pathfinder.vim icon indicating copy to clipboard operation
pathfinder.vim copied to clipboard

Vim plugin to suggest better movements

Results 16 pathfinder.vim issues
Sort by recently updated
recently updated
newest added

Add weights to motions based on the difficulty to understand/use them. For example, `j` would be cheaper than `]]`. There can then be a scale between selecting the shortest path,...

feature

Folds are not transferred to the server. ## Possible Solution This and #42 could be fixed by using `mksession` as part of the transfer. That may also help with #39...

bug

Numbers from 1 to 100 can be used with `%` to jump to percentages of the buffer's total lines. These only need to appear as children of the start node.

feature

Vim freezes for a while when transferring a large file to the server for pathfinding. ## Possible Solution If a buffer is read-only, or unmodified, send only the file path...

bug

In visual-line mode, it doesn't matter where exactly the cursor is as long as it lands on the same line as the target. This can be used to accept shorter...

feature

Sometimes, if pathfinding takes a while, you can forget what motion you did so the suggestion isn't very useful. I originally thought to highlight the positions in the buffer -...

feature

``` aaaaaaaaZaaaaY bbbbbbbbb cccccccccccccccccXc ``` Start from X and go to Y. `2k` ends up on Y. `kk` ends up on Z. Currently `kk` is suggested.

bug

I have added the plugin with vim-plug as per the instructions, installed it, and went about editing a markdown file moving naively (`jjjjjjjjjwwwww`) to see the plugin work. But nothing...

bug

``` set rtp+=~/.config/nvim/autoload/plug.vim call plug#begin('~/.config/nvim/plugged') Plug 'junegunn/vim-peekaboo' Plug 'AlphaMycelium/pathfinder.vim' call plug#end() ``` Press `i`

bug