mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 03:23:51 -05:00
11 lines
359 B
VimL
11 lines
359 B
VimL
if polyglot#init#is_disabled(expand('<sfile>:p'), 'objc', 'ftplugin/objc.vim')
|
|
finish
|
|
endif
|
|
|
|
" Use C++ style comment strings with commentary.vim
|
|
setl commentstring=//%s
|
|
|
|
" Search for include files inside frameworks (used for gf etc.)
|
|
setl includeexpr=substitute(v:fname,'\\([^/]\\+\\)/\\(.\\+\\)','/System/Library/Frameworks/\\1.framework/Headers/\\2','')
|
|
|