Results 52 comments of W.

+ bracket matching doesn't also work; when on the `>` in `%>`, tha highlighted bracket is on second `

Is there anything I can do to help getting this resolved? I just noticed this after some debugging so it would be nice to have this fixed.

Added option for it, defaults to hard links. Out of curiosity, why do you prefer hardlinks?

hm, one thought, if it's hardlink, it asks for every file if it should remove it, that's probably not ideal? Should I also enable the prompt if should delete file...

Well ignoring some errors later on it seems that the fetch itself works fine with the https: ``` $ docker run --init --rm -it alpine sh -c 'apk upgrade -Ua...

Hello, thanks for the fix, however I am not sure it works. I have ran it with `guix shell --with-branch=guile-ssh=master guile guile-ssh strace` to make sure I have the latest...

I think https://github.com/libssh/libssh-mirror/blob/ac6d2fad4a8bf07277127736367e90387646363f/src/options.c#L1472 is the cause why `#:config "/dev/null"` causes it to work. Looking at https://api.libssh.org/master/group__libssh__session.html#ga7a801b85800baa3f4e16f5b47db0a73d I think `#:config #f` should imply `SSH_OPTIONS_PROCESS_CONFIG` being set to `0`. Which is currently...

``` diff --git a/libguile-ssh/session-func.c b/libguile-ssh/session-func.c index 7006b62..81fa227 100644 --- a/libguile-ssh/session-func.c +++ b/libguile-ssh/session-func.c @@ -55,6 +55,7 @@ static gssh_symbol_t session_options[] = { { "knownhosts", SSH_OPTIONS_KNOWNHOSTS }, { "timeout", SSH_OPTIONS_TIMEOUT }, {...

> As far as I can tell `process-config` and `#f` passed as the value for `config` option must have different meaning. When `config` is set to `#f` it means that...