Skip to content

Instantly share code, notes, and snippets.

@Pafuxu
Created March 26, 2009 14:18
Show Gist options
  • Save Pafuxu/86123 to your computer and use it in GitHub Desktop.
Save Pafuxu/86123 to your computer and use it in GitHub Desktop.
" Search
set hlsearch " highlight search
set incsearch " incremental search, search as you type
set ignorecase " Ignore case when searching
set smartcase " Ignore case when searching lowercase
" ESCキー2度押しでハイライトを消す
nnoremap <Esc><Esc> :<C-u>set nohlsearch<Return>
nnoremap / :<C-u>set hlsearch<Return>/
nnoremap ? :<C-u>set hlsearch<Return>?
nnoremap * :<C-u>set hlsearch<Return>*
nnoremap # :<C-u>set hlsearch<Return>#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment