aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/searchop.vim
blob: 8a24edecd1627d5ba0cc478c65e044678aa6a165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
nnoremap <silent> z/ :set opfunc=Search<CR>g@
vnoremap <silent> z/ :<C-u>call Search(visualmode(), 1)<CR>


function! Search(type, ...)
	silent execute "normal! `[v`]y"

	let @/ = escape(@@, '\')
	call histadd('/', @/)

	call feedkeys('n', 't')
endfunction