aboutsummaryrefslogtreecommitdiff
path: root/vim/config/search.vim
blob: 69f3f472d871245de99746511cda81d829b366ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
" Some special settings for searching, if available
if has('extra_search')

  " Searching as I enter my pattern, \i toggles this
  set incsearch
  nnoremap <silent>
        \ <Leader>i
        \ :<C-U>setlocal incsearch! incsearch?<CR>

  " Highlight search results, \h toggles this
  set hlsearch
  nnoremap <silent>
        \ <Leader>h
        \ :<C-U>setlocal hlsearch! hlsearch?<CR>

  " Pressing ^L will clear highlighting until the next search-related
  " operation; quite good because the highlighting gets distracting after
  " you've found what you wanted
  nnoremap <silent>
        \ <C-L>
        \ :<C-U>nohlsearch<CR><C-L>

  " Clear search highlighting as soon as I enter insert mode, and restore it
  " once I leave it
  if has('autocmd') && v:version >= 701
    augroup dotfiles_highlight
      autocmd!
      autocmd InsertEnter
            \ *
            \ setlocal nohlsearch
      autocmd InsertLeave
            \ *
            \ setlocal hlsearch
    augroup END
  endif

endif