We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use junegunn/vim-plug manager. Here is my minimum .vimrc. I added a line as advised in #44
junegunn/vim-plug
.vimrc
set foldmethod=indent let g:EasyMotion_skipfoldedline = 0 call plug#begin('~/.vim/plugged') Plug 'easymotion/vim-easymotion' call plug#end()
Here is a simple Python file for testing convenience:
import this def test_this(): print() print() print() def test_that(): print() print() print()
To reproduce the error:
test_this
<Leader><Leader>w
Strangely though, I have tried "jumping over folds" with my .vimrc and it works very well. I've only observed this in Python.
The error message in the vim status bar is:
EasyMotion: Vim(call):E475: Invalid argument: -1 : function EasyMotion#WB[4]..<SNR>32_EasyMotion, line 109
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use
junegunn/vim-plug
manager. Here is my minimum.vimrc
. I added a line as advised in #44Here is a simple Python file for testing convenience:
To reproduce the error:
test_this
function, put cursor above the folded function, then press<Leader><Leader>w
. Error.<Leader><Leader>w
. It works.Strangely though, I have tried "jumping over folds" with my
.vimrc
and it works very well. I've only observed this in Python.The error message in the vim status bar is:
The text was updated successfully, but these errors were encountered: