yangsheng6810

Results 38 comments of yangsheng6810

Ran into same problem. See #39

No. For me it fixes the problem. Maybe because I have the following in `.ssh/config`: ```conf Host * ControlMaster auto ControlPath ~/.ssh/master-%r@%h:%p ``` Another possible reason is the cache of...

I am also on emacs 26.1 on Arch Linux. @kissge Did you apply the workarounds in https://github.com/nonsequitur/git-gutter-plus/pull/39 ?

@szobov Have you cleaned up the cache for tramp? > Another possible reason is the cache of tramp. [Cleanup remote connections](https://www.gnu.org/software/emacs/manual/html_node/tramp/Cleanup-remote-connections.html) Run `tramp-clear-up-all-connections`, close emacs, remove the cache file of...

@szobov You also need to run `tramp-clear-up-all-connections`.

@szobov Could you toggle on `toggle-debug-on-error` and run it again to show the debugger and call trace? It looks to me this might be a problem related to `helm`.

@paupereira, I have this in my spacemacs/user-config. The problem form your approach is that git-gutter+ is lazy loaded, and may be loaded after your redefinition. ``` emacs-lisp (with-eval-after-load 'git-gutter+ (defun...

I ran into the same bug, and here is my workaround (it also adds the missing support for non-default port): ```emacs-lisp (defun git-gutter+-remote-default-directory (dir file) (let* ((vec (tramp-dissect-file-name file)) (method...

@beyondpie I am not the owner of this repo so I do not have the permission. I will submit a PR with my workaround though, after checking backward compatibility with...