mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
70 lines
1.9 KiB
VimL
70 lines
1.9 KiB
VimL
if polyglot#init#is_disabled(expand('<sfile>:p'), 'fish', 'ftplugin/fish.vim')
|
|
finish
|
|
endif
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
end
|
|
let b:did_ftplugin = 1
|
|
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
setlocal comments=:#
|
|
setlocal commentstring=#%s
|
|
setlocal define=\\v^\\s*function>
|
|
setlocal foldexpr=fish#Fold()
|
|
setlocal formatoptions+=ron1
|
|
setlocal formatoptions-=t
|
|
setlocal include=\\v^\\s*\\.>
|
|
setlocal iskeyword=@,48-57,-,_,.
|
|
setlocal suffixesadd^=.fish
|
|
|
|
" Use the 'j' format option when available.
|
|
if v:version ># 703 || v:version ==# 703 && has('patch541')
|
|
setlocal formatoptions+=j
|
|
endif
|
|
|
|
if executable('fish_indent')
|
|
setlocal formatexpr=fish#Format()
|
|
endif
|
|
|
|
if executable('fish')
|
|
setlocal omnifunc=fish#Complete
|
|
for s:path in split(system("fish -c 'echo $fish_function_path'"))
|
|
execute 'setlocal path+='.s:path
|
|
endfor
|
|
else
|
|
setlocal omnifunc=syntaxcomplete#Complete
|
|
endif
|
|
|
|
" Use the 'man' wrapper function in fish to include fish's man pages.
|
|
" Have to use a script for this; 'fish -c man' would make the the man page an
|
|
" argument to fish instead of man.
|
|
execute 'setlocal keywordprg=fish\ '.fnameescape(expand('<sfile>:p:h:h').'/bin/man.fish')
|
|
|
|
let b:match_ignorecase = 0
|
|
if has('patch-7.3.1037')
|
|
let s:if = '%(else\s\+)\@15<!if'
|
|
else
|
|
let s:if = '%(else\s\+)\@<!if'
|
|
endif
|
|
|
|
let b:match_words = escape(
|
|
\'<%(begin|function|'.s:if.'|switch|while|for)>:<else\s\+if|case>:<else>:<end>'
|
|
\, '<>%|)')
|
|
|
|
let b:endwise_addition = 'end'
|
|
let b:endwise_words = 'begin,function,if,switch,while,for'
|
|
let b:endwise_syngroups = 'fishKeyword,fishConditional,fishRepeat'
|
|
|
|
let b:undo_ftplugin = "
|
|
\ setlocal comments< commentstring< define< foldexpr< formatoptions<
|
|
\|setlocal include< iskeyword< suffixesadd<
|
|
\|setlocal formatexpr< omnifunc< path< keywordprg<
|
|
\|unlet! b:match_words b:endwise_addition b:endwise_words b:endwise_syngroups
|
|
\"
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|