1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00

Add auto trim whitespace on ruby files

This commit is contained in:
Max Arturo AS 2015-09-19 10:56:23 -05:00
parent 0e8f801fa2
commit c8f43eaec6

View File

@ -307,6 +307,7 @@ func! DeleteTrailingWS()
endfunc
autocmd BufWrite *.py :call DeleteTrailingWS()
autocmd BufWrite *.coffee :call DeleteTrailingWS()
autocmd BufWrite *.rb :call DeleteTrailingWS()
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""