vim-easymotion
vim-easymotion copied to clipboard
Vim motions on speed!
### 1. environment * [NVIM v0.3.0-1029-g48967695c, Build type: RelWithDebInfo](https://github.com/neovim/neovim/) * [vim-plug](https://github.com/junegunn/vim-plug) * [MX Linux 17 Horizon](http://mxlinux.org/) * [the rest of my environment](https://gist.github.com/mrbig033/63fd7f4f51b6a8ae379abae74c52aff2) ### 2. problem [According to the documentation](https://github.com/easymotion/vim-easymotion/blob/342549e7a1e5b07a030803e0e4b6f0415aa51275/doc/easymotion.txt#L242), these...
Hello, I was a vimperator user until Mozilla chose to break its api, back then I used the 'follow hint' command, with `HINTCHARS` variable set to my keyboard middle row...
since i want to implement function like ``` function! VisualSearch(direction) range let l:saved_reg = @" execute "normal! vgvy" let l:pattern = escape(@", '\\/.*$^~[]') let l:pattern = substitute(l:pattern, "\n$", "", "")...
Hi! Is it possible to use a different prefix in operator-pending mode? I would like to use 's' when in normal mode, and 'z' when in operator-pending mode (like vim-sneak),...
I like easymotion as a way to move around, but I thought of one way to maybe improve it. When using EasyMotion now I mostly use a single mapping to...
For reference, I mean `s:GroupingAlgorithmSCTree` https://github.com/easymotion/vim-easymotion/blob/342549e7a1e5b07a030803e0e4b6f0415aa51275/autoload/EasyMotion.vim#L805-L892 The algorithm is correct, but should be cleaned up and refactored, because: * there are [unused variables](https://github.com/easymotion/vim-easymotion/pull/359/files#diff-797823d9d991e966c5cdefddb0fae948L859), causing confusion * [this call to `reverse`](https://github.com/easymotion/vim-easymotion/blob/342549e7a1e5b07a030803e0e4b6f0415aa51275/autoload/EasyMotion.vim#L812)...
There are tests in the `t/` directory; I have no clue how to run them against a revision.
Closes #358; see that issue for motivation. I'd also like to squash merge this, since we don't need the commit history on `master`, and I'm fine keeping this branch on...
@justinmk copied a feature from `clever-f.vim` to `vim-sneak`, that allows one to repeat the mapping (hit `s` again after an `s`, for instance) to reach further instances of the pair....