aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/sh.vim
blob: 880f08e9c3751f34a9f715595e1451745eb061e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
" Add automatic commands to choose shell flavours based on filename pattern

" Names/paths of things that are Bash shell script
autocmd BufNewFile,BufRead
      \ **/.dotfiles/bash/**,bash-fc-*
      \ let b:is_bash = 1
      \ | setfiletype sh

" Names/paths of things that are Korn shell script
autocmd BufNewFile,BufRead
      \ **/.dotfiles/ksh/**,.kshrc,*.ksh
      \ let b:is_kornshell = 1
      \ | setfiletype 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
      \ | setfiletype sh