vim-snipe
vim-snipe copied to clipboard
Given `baaa`, swap 'b' from the end of the line. Should be able to repeat until 'b' is at the front of the line. Even if there are multiple occurrences...
```vim function! LightlineAleWarning() let counts = ale#statusline#Count(bufnr('')) let n_warnings = counts.style_warning + counts.warning + counts.info return counts.total == 0 || n_warnings == 0 \ ? '' \ : printf('%d ◆',...
https://github.com/junegunn/vader.vim
Hello again :-) Using `map f (snipe-f)` as keybinding Pressing `cf` should stay in normal mode instead of going in insert mode. And if I'm not mistaken, if you go...
### Mappings omap l (snipe-t) omap L (snipe-f) omap h (snipe-T) omap H (snipe-F) ### Steps to reproduce "this is an example sentence" If we try to jump to any...
See https://github.com/yangmillstheory/vim-snipe/issues/16#issuecomment-349192262, triggered by `(snipe-f-w)`.