Skip to content

Commit

Permalink
Disable the 'cursor' class by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtom committed Nov 28, 2010
1 parent aafe1d1 commit 2a49a60
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugin/quickfixsigns.vim
Expand Up @@ -49,7 +49,7 @@ if !exists('g:quickfixsigns_classes')
" event: The event on which signs of this type should be set.
" Possible values: BufEnter, any
" test: Update the sign only if the expression is true.
let g:quickfixsigns_classes = ['cursor', 'qfl', 'loc', 'marks', 'vcsdiff', 'breakpoints'] "{{{2
let g:quickfixsigns_classes = ['qfl', 'loc', 'marks', 'vcsdiff', 'breakpoints'] "{{{2
" let g:quickfixsigns_classes = ['rel', 'qfl', 'loc', 'marks'] "{{{2
endif

Expand Down Expand Up @@ -89,7 +89,6 @@ if !exists('g:quickfixsigns_class_cursor')
" lazily updated. If you want something more precise, consider
" setting 'cursorline'.
let g:quickfixsigns_class_cursor = {'sign': 'QFS_CURSOR', 'get': 's:GetCursor()', 'event': g:quickfixsigns_events} "{{{2
" let g:quickfixsigns_class_cursor = {'sign': 'QFS_CURSOR', 'get': 's:GetCursor()', 'event': ['BufEnter', 'CursorMoved', 'CursorMovedI'], 'test': 'line(".") != s:cursor_last_line'} "{{{2
endif


Expand Down

0 comments on commit 2a49a60

Please sign in to comment.