Greg Lucas
Greg Lucas
Just trying out autojump on Win10 and hit this. The proposed patch seems to work for me.
@wting If the tests are not actually executed on Windows, won't the match_consecutive tests pick up the wrong `os.sep`? The tests won't actually fail unless os.sep is a backslash.
Emacs has a general mechanism for deciding how windows are split and/or reused. See [How display-buffer works](https://www.gnu.org/software/emacs/manual/html_node/emacs/Window-Choice.html#Window-Choice) in the Emacs manual for more. You can tune this behavior by customizing...
I suppose this is similar to the `avy-dispatch-alist` support, where a non-matching key can change the resulting avy action. The difference is that the non-matching key would instead start a...
It seems restclient-jq depends on cl. Try evaluating this somewhere: (require 'cl-lib)
Here's a diff that seems to work: when there is no region, set the mark and then set a temporary map with SPC bound to expand-region. +++ # @@ -70,7...
I think this is actually an issue with `expand-region`: see https://github.com/magnars/expand-region.el/issues/220. There is a patch submitted but it has not been merged yet. From the discussion on that issue, you...
One minor tweak (not related to the issue mentioned above): - (call-interactively 'set-mark-command)) + (call-interactively 'set-mark-command) + (set-transient-map + (let ((map (make-sparse-keymap))) + (define-key map (kbd "") 'er/expand-region) + map)))...
If we fix #3 then this problem won't really come up anymore. The typical expand-region pattern would then be C-SPC SPC (SPC)*.
@blaggacao > Meanwhile I came up with this shell function: > > _j_dir="$ROOT/$(ghq list | fzf)" If you are already using fzf, perhaps something like `cd $(ghq list -p |...