vim-sneak icon indicating copy to clipboard operation
vim-sneak copied to clipboard

The missing motion for Vim :athletic_shoe:

Results 27 vim-sneak issues
Sort by recently updated
recently updated
newest added

It looks like the indent guides (using the [indentLine](https://github.com/Yggdroot/indentLine) plugin) are disabled while using sneak in the current buffer. I'm assuming this is to avoid conflicts with the conceal functionality....

bug
help-wanted
blocked

Hello! I notice that when sneak-label-mode is enabled, concealed `cchar`s are shown with label highlighting. Here is an example with .tex ![image](https://user-images.githubusercontent.com/46756885/113661823-661a4780-96d9-11eb-8ecf-4d42d2e009cb.png) ```vim " vimrc call plug#begin('~/.vim/plugged') Plug 'lervag/vimtex' Plug...

bug
blocked

I learnt about sneak recently. The first think I did was to go to this github space. There, the Usage section starts with a seemingly nice image. The image is...

bug

1. Open vim 2. Type some newlines and put `foo` somwhere in between 3. Go to the top 4. Search for `fo` with sneak 5. Try to go to the...

bug

Before the PR, the default keymappings sometimes annoyed us, who would like to use `s` as vim's default (the synonym for `cl`) and so on.

Current vim-sneak and Neovim 0.2.0. To reproduce: `testrc.vim`: ```vim filetype off call plug#begin('~/.local/share/nvim/plugged') Plug 'justinmk/vim-sneak' call plug#end() filetype plugin indent on let g:sneak#label = 1 ``` `echo 'test test test'...

bug

Hi there, When the fix for #186 acts (i.e. when sneak-streak is activated in a buffer that has `foldmethod=syntax`), it stores `"syntax"` in `s:fdm_orig` in the `s:before()` function. This is...

bug

With regex input supported, for example, these jumps would be possible: ``` " Alternative searching, flexibility improved nnoremap g/ :call sneak#wrap('', 99, 0, 2, 1)\v " Jump around word boundaries,...

enhancement

Resolve #102. Sneaking with `set foldopen-=search` will now handle closed folds like single targets and skip over multiple search results inside of them. With `set foldopen+=search`, i.e. the default behavior,...

Fix #104. This should support more flexibility in customisation. With this option enabled, input text not matching '^\[vVmM].' are still treated literal.

enhancement