1
0
mirror of https://github.com/amix/vimrc synced 2025-07-01 04:35:00 +08:00

Default to Hack font

This commit is contained in:
amix
2015-12-08 10:19:59 -03:00
parent b1ffcf08ba
commit 768c72a3ed
3 changed files with 5 additions and 5 deletions

View File

@ -122,7 +122,7 @@ let g:syntastic_javascript_checkers = ['jshint']
" Custom CoffeeScript SyntasticCheck
func! SyntasticCheckCoffeescript()
let l:filename = substitute(expand("%:p"), '\(\w\+\)\.coffee', '.coffee.\1.js', '')
execute "e " . l:filename
execute "tabedit " . l:filename
execute "SyntasticCheck"
execute "Errors"
endfunc