2014-07-10 21:05:51 -07:00
|
|
|
" Vim filetype plugin file
|
2022-09-10 05:54:13 -07:00
|
|
|
" Language: sh
|
|
|
|
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
|
|
|
" Previous Maintainer: Dan Sharp
|
2023-08-30 00:25:39 -07:00
|
|
|
" Contributor: Enno Nagel <ennonagel+vim@gmail.com>
|
2023-10-06 13:50:17 -07:00
|
|
|
" Eisuke Kawashima
|
2024-09-19 09:55:55 -07:00
|
|
|
" Last Change: 2024 Sep 19 by Vim Project (compiler shellcheck)
|
2022-09-10 05:54:13 -07:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
2014-07-10 21:05:51 -07:00
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo-=C
|
|
|
|
|
2024-02-28 02:38:25 -07:00
|
|
|
setlocal comments=b:#
|
2022-09-10 05:54:13 -07:00
|
|
|
setlocal commentstring=#\ %s
|
|
|
|
setlocal formatoptions-=t formatoptions+=croql
|
|
|
|
|
|
|
|
let b:undo_ftplugin = "setl com< cms< fo<"
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" Shell: thanks to Johannes Zellner
|
2022-09-10 05:54:13 -07:00
|
|
|
if exists("loaded_matchit") && !exists("b:match_words")
|
|
|
|
let b:match_ignorecase = 0
|
|
|
|
let s:sol = '\%(;\s*\|^\s*\)\@<=' " start of line
|
|
|
|
let b:match_words =
|
|
|
|
\ s:sol .. 'if\>:' .. s:sol.'elif\>:' .. s:sol.'else\>:' .. s:sol .. 'fi\>,' ..
|
|
|
|
\ s:sol .. '\%(for\|while\)\>:' .. s:sol .. 'done\>,' ..
|
|
|
|
\ s:sol .. 'case\>:' .. s:sol .. 'esac\>'
|
|
|
|
unlet s:sol
|
|
|
|
let b:undo_ftplugin ..= " | unlet! b:match_ignorecase b:match_words"
|
2014-07-10 21:05:51 -07:00
|
|
|
endif
|
|
|
|
|
2022-09-10 05:54:13 -07:00
|
|
|
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
|
2024-01-15 03:12:32 -07:00
|
|
|
let b:browsefilter = "Bourne Shell Scripts (*.sh)\t*.sh\n" ..
|
|
|
|
\ "Korn Shell Scripts (*.ksh)\t*.ksh\n" ..
|
|
|
|
\ "Bash Shell Scripts (*.bash)\t*.bash\n"
|
|
|
|
if has("win32")
|
|
|
|
let b:browsefilter ..= "All Files (*.*)\t*\n"
|
|
|
|
else
|
|
|
|
let b:browsefilter ..= "All Files (*)\t*\n"
|
|
|
|
endif
|
2022-09-10 05:54:13 -07:00
|
|
|
let b:undo_ftplugin ..= " | unlet! b:browsefilter"
|
2014-07-10 21:05:51 -07:00
|
|
|
endif
|
|
|
|
|
2023-10-06 13:50:17 -07:00
|
|
|
if get(b:, "is_bash", 0)
|
2024-09-19 10:46:50 -07:00
|
|
|
if exists(':terminal') == 2
|
2023-10-06 13:50:17 -07:00
|
|
|
command! -buffer -nargs=1 ShKeywordPrg silent exe ':term bash -c "help "<args>" 2>/dev/null || man "<args>""'
|
2023-08-23 17:08:24 -07:00
|
|
|
else
|
2024-05-07 02:05:55 -07:00
|
|
|
command! -buffer -nargs=1 ShKeywordPrg echo system('bash -c "help <args>" 2>/dev/null || MANPAGER= man "<args>"')
|
2023-08-23 17:08:24 -07:00
|
|
|
endif
|
2023-10-06 13:50:17 -07:00
|
|
|
setlocal keywordprg=:ShKeywordPrg
|
|
|
|
let b:undo_ftplugin ..= " | setl kp< | sil! delc -buffer ShKeywordPrg"
|
2024-09-19 09:55:55 -07:00
|
|
|
|
|
|
|
if !exists('current_compiler')
|
|
|
|
compiler shellcheck
|
|
|
|
endif
|
|
|
|
let b:undo_ftplugin .= ' | compiler make'
|
2023-08-23 17:08:24 -07:00
|
|
|
endif
|
|
|
|
|
2014-07-10 21:05:51 -07:00
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
2022-09-10 05:54:13 -07:00
|
|
|
|
|
|
|
" vim: nowrap sw=2 sts=2 ts=8 noet:
|