1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Fix missing parameter for StripTrailingWhitespaces function

This commit is contained in:
2017-03-14 12:31:56 +01:00
parent 16a25979d2
commit 51ea31bdab

2
vimrc
View File

@@ -162,7 +162,7 @@ let g:browser = 'xdg-open'
"COMMON: specific vim behaviour {{{ "COMMON: specific vim behaviour {{{
"remove all trailing whitespace for specified files before write "remove all trailing whitespace for specified files before write
autocmd BufWritePre * :call <SID>StripTrailingWhitespaces(0) autocmd BufWritePre * :call <SID>StripTrailingWhitespaces(0, 'n')
"set correct filetype for tmux "set correct filetype for tmux
autocmd BufRead *.tmux.conf set filetype=tmux autocmd BufRead *.tmux.conf set filetype=tmux