Closed hoschi closed 3 years ago
I tried the mapping and it worked as expected in my side. I guess this issue was fixed at some point or due to some confusion. I'll close this. If you still see this, please let me know by leaving comment here.
Hm. f
works now, with the mapping installed.
However, ,f
doesn't seem to reset "clever f". When I start searching by fn
for char "n" I see highlights for every "n". My use case is that I want to search for another character, but pressing ,f
still searches for "n".
Thanks for the comment. I'm reopening this and will look into it.
I tried the following steps but it did not reproduce this issue. Could you try the same?
vimrc
file in current directoryecho 'abcabcabcabcabcabcabcabc' > foo.txt
vim -N -u ./vimrc foo.txt
faff
. Now cursor is on 'a' character,f
fb
and check if 'b' is searched with this pluginset nocompatible
set rtp+=~/.vim/bundle/clever-f.vim
let mapleader = ','
nmap <Leader>f <Plug>(clever-f-reset)
That actually works! I guess I need then to find the problem in my (not so small) config 🙃.
I recommend to check :nmap <Leader>f
in your Vim.
I checked that first, it shows only the binding to clever-f
That actually works! I guess I need then to find the problem in my (not so small) config 🙃.
If you find this issue is a problem of this plugin, please let me know by leaving a comment. Closing this issue meanwhile.
or I'm too dumb to get it right ... ^^
I tried as normal with:
with
,
as leader. When I do thisf
doesn't work anymore. Ther cursor jumps to the status line when I pressf
and return to previous position when I press another key to search for that character. But it doesn't search any more :(