]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Minor documentation update.
authorSimon Ruderich <simon@ruderich.org>
Sun, 2 Dec 2012 20:52:48 +0000 (21:52 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 2 Dec 2012 20:52:48 +0000 (21:52 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 5141f596c77e83b5e5cfcf74868df93aac3bdb98..5993bff360d6dea7766e06e228b16d6e293da2d7 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -584,7 +584,7 @@ nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
 " and all nerds involved (godlygeek, strull in #vim on Freenode).
 if has('eval')
     function! s:VSetSearch()
-        let l:temp = @@
+        let l:temp = @@ " unnamed register
         normal! gvy
         " Added \C to force 'noignorecase' while searching the current visual
         " selection. I want to search for the exact string in this case.