-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
After searching backward, the n-direction is wrong #2
Comments
以下のようなマッピングをしてないでしょうか? let g:incsearch#consistent_n_direction = 1 デフォルト状態だと再現しないように思います |
コメントありがとうございます。consistent_n_directionは使用していません。
set encoding=utf-8
scriptencoding utf-8
filetype plugin indent off
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
call neobundle#begin(expand('~/.vim/bundle'))
NeoBundle 'haya14busa/incsearch.vim'
NeoBundle 'easymotion/vim-easymotion'
NeoBundle 'haya14busa/incsearch-easymotion.vim',
call neobundle#end()
filetype plugin indent on
syntax enable
map z/ <Plug>(incsearch-easymotion-/)
map z? <Plug>(incsearch-easymotion-?)
map gz/ <Plug>(incsearch-easymotion-stay)
noremap <silent> <expr> gz? incsearch#go(incsearch#config#easymotion#make({'command' : '?', 'is_stay' : 1}))
|
コード読んだのですが、原因まで辿りつけていません…。 incsearch-easymotion.vim\autoload\incsearch\over\modules\EasyMotion.vim
それと、easymotionでは以下の関数が呼び出されていませんでした。 incsearch.vim\autoload\incsearch.vim
|
backward検索後、n/Nのカーソル移動方向がforward検索時と同じになっています。
The text was updated successfully, but these errors were encountered: