dracula.vim 402 B

1234567891011
  1. " Helper function that takes a variadic list of filetypes as args and returns
  2. " whether or not the execution of the ftplugin should be aborted.
  3. func! dracula#should_abort(...)
  4. if ! exists('g:colors_name') || g:colors_name !=# 'dracula'
  5. return 1
  6. elseif a:0 > 0 && (! exists('b:current_syntax') || index(a:000, b:current_syntax) == -1)
  7. return 1
  8. endif
  9. return 0
  10. endfunction