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


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

	let @/ = escape(@@, '\')
	call histadd('/', @/)
	normal! n
endfunction