Navigation Menu

Skip to content

Commit

Permalink
Improve highlighting in quick-fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Apr 21, 2013
1 parent 1732c6c commit 8f82c18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/xolox/notes.vim
Expand Up @@ -6,7 +6,7 @@
" Note: This file is encoded in UTF-8 including a byte order mark so
" that Vim loads the script using the right encoding transparently.

let g:xolox#notes#version = '0.17.5'
let g:xolox#notes#version = '0.17.6'
let s:scriptdir = expand('<sfile>:p:h')

call xolox#misc#compat#check('notes', 1)
Expand Down Expand Up @@ -667,7 +667,7 @@ function! s:internal_search(bang, pattern, keywords, phase2) " {{{2
endif
silent cwindow
if &buftype == 'quickfix'
execute 'match IncSearch' substitute(pattern, '^/', '/\\c', '')
execute 'match IncSearch' (&ignorecase ? substitute(pattern, '^/', '/\\c', '') : pattern)
endif
endfunction

Expand Down

0 comments on commit 8f82c18

Please sign in to comment.