From bef85e735c0c6d1c71d79f6ff20b8d5f0ce4b0c5 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 30 Oct 2017 16:51:16 +1300 Subject: Use conventional indent for continued VimL lines I had four spaces, but with a 'shiftwidth' of 2, 6 is the conventional value. From :help ft-vim-indent: >For indenting Vim scripts there is one variable that specifies the >amount of indent for a continuation line, a line that starts with a >backslash: > > :let g:vim_indent_cont = &sw * 3 > >Three times shiftwidth is the default value. --- vim/ftdetect/csv.vim | 4 ++-- vim/ftdetect/muttrc.vim | 4 ++-- vim/ftdetect/sh.vim | 18 +++++++++--------- vim/ftdetect/tsv.vim | 4 ++-- vim/ftdetect/xdefaults.vim | 4 ++-- 5 files changed, 17 insertions(+), 17 deletions(-) (limited to 'vim/ftdetect') diff --git a/vim/ftdetect/csv.vim b/vim/ftdetect/csv.vim index 4a2d082f..727077a0 100644 --- a/vim/ftdetect/csv.vim +++ b/vim/ftdetect/csv.vim @@ -2,6 +2,6 @@ augroup dfcsv autocmd! autocmd BufNewFile,BufRead - \ *.csv - \ setfiletype csv + \ *.csv + \ setfiletype csv augroup END diff --git a/vim/ftdetect/muttrc.vim b/vim/ftdetect/muttrc.vim index 2ef72309..832d0c1f 100644 --- a/vim/ftdetect/muttrc.vim +++ b/vim/ftdetect/muttrc.vim @@ -2,6 +2,6 @@ augroup dfmuttrc autocmd! autocmd BufNewFile,BufRead - \ **/.dotfiles/mutt/muttrc.d/*.rc,**/.muttrc.d/*.rc - \ setfiletype muttrc + \ **/.dotfiles/mutt/muttrc.d/*.rc,**/.muttrc.d/*.rc + \ setfiletype muttrc augroup END diff --git a/vim/ftdetect/sh.vim b/vim/ftdetect/sh.vim index 8b4c10d3..92aa2a0c 100644 --- a/vim/ftdetect/sh.vim +++ b/vim/ftdetect/sh.vim @@ -4,20 +4,20 @@ augroup dfsh " Names/paths of things that are Bash shell script autocmd BufNewFile,BufRead - \ **/.dotfiles/bash/**,bash-fc-* - \ let b:is_bash = 1 | - \ setfiletype sh + \ **/.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 + \ **/.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 + \ **/.dotfiles/sh/**,.shinit,.shrc,.xinitrc,/etc/default/* + \ let b:is_posix = 1 | + \ setfiletype sh augroup END diff --git a/vim/ftdetect/tsv.vim b/vim/ftdetect/tsv.vim index 7cfaf1b8..af544a94 100644 --- a/vim/ftdetect/tsv.vim +++ b/vim/ftdetect/tsv.vim @@ -2,6 +2,6 @@ augroup dftsv autocmd! autocmd BufNewFile,BufRead - \ *.tsv - \ setfiletype tsv + \ *.tsv + \ setfiletype tsv augroup END diff --git a/vim/ftdetect/xdefaults.vim b/vim/ftdetect/xdefaults.vim index 589f0dfc..098ded56 100644 --- a/vim/ftdetect/xdefaults.vim +++ b/vim/ftdetect/xdefaults.vim @@ -2,6 +2,6 @@ augroup dfxdefaults autocmd! autocmd BufNewFile,BufRead - \ **/.Xresources.d/* - \ setfiletype xdefaults + \ **/.Xresources.d/* + \ setfiletype xdefaults augroup END -- cgit v1.2.3