summaryrefslogtreecommitdiffstats
path: root/ftplugin/objc.vim
blob: 906ae2bf5a632897f4cab46a72c57c4dd0fb5ecd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
if has_key(g:polyglot_is_disabled, 'objc')
  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','')