You can try putting these two lines in ~/.vim/after/filetype.vim. This should be obtained after any of the top-level syntax files. This may not be the “right” place, but it should work.
filetype.vim is apparently derived from syntax files, so it is overwritten by default syntax file. Therefore, I would recommend you create a new file with the name:
~/.vim/after/common_syntax.vim
, . ~/.vim/after/filetype.vim:
if !exists("after_autocmds_loaded")
let after_autocmds_loaded = 1
au BufNewFile,BufRead * source ~/.vim/after/common_syntax.vim
endif
, , .
P.S. : " " plain ol "comment " pythoncomment " ..?", , - pythonComment, , . , , containedin=ALL. , , containedin=ALLBUT,conflictgroup, conflictgroup - , .