tomtom / quickfixsigns_vim

Mark quickfix & location list items with signs
http://www.vim.org/scripts/script.php?script_id=2584
GNU General Public License v3.0
131 stars 13 forks source link

Disable on specific buffer type #61

Closed simonweil closed 8 years ago

simonweil commented 9 years ago

Thank you for a useful plugin! Is it possible to disable the plugin on a specific buffer type or file type?

tomtom commented 9 years ago

Is it possible to disable the plugin on a specific buffer type or file type?

This are your buffer-local options:

:h QuickfixsignsSet

" If the buffer-local variable b:quickfixsigns_ignore (a list of " strings) exists, sign classes in that list won't be displayed for the " current buffer.

:h :QuickfixsignsDisable

You can use :autocmd Filetype to disable qfs for certain filetypes.

You can also use g:quickfixsigns_blacklist_buffer to blacklist buffers based on their name.

HTH