aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftdetect/sh.vim
blob: 1d87d43e196fedcb18ea9ea0f344aa485e4e599c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
" Names/paths of things that are Bash shell script
autocmd BufNewFile,BufRead
    \ **/.dotfiles/bash/**,bash-fc-*
    \ let b:is_bash = 1 |
    \ setlocal filetype=sh

" Names/paths of things that are Korn shell script
autocmd BufNewFile,BufRead
    \ **/.dotfiles/pdksh/**,.pdkshrc,*.pdksh
    \ let b:is_kornshell = 1 |
    \ setlocal filetype=sh

" Names/paths of things that are POSIX shell script
autocmd BufNewFile,BufRead
    \ **/.dotfiles/sh/**,.shinit,.shrc,.xinitrc,/etc/default/*
    \ let b:is_posix = 1 |
    \ setlocal filetype=sh

" If we determined something is b:is_kornshell, tack on b:is_ksh as well so we
" can still tease out what is actually a kornshell script after sh.vim is done
" changing our options for us; it conflates POSIX with Korn shell.
if exists('b:is_kornshell')
  let b:is_ksh = 1
endif