This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Tools for searching and replacing text in Vim | |
" Search for the current visual selection | |
fun! StarSearch(direction) | |
let old_reg = getreg('"') | |
let old_regtype = getregtype('"') | |
exe 'normal! gvy\<esc>gV' | |
let @/ = EscapeMagic(@") | |
call histadd("/", @/) |