Clear render error callback on Stop(). Ensure callback is set.
[chromium-blink-merge.git] / tools / vim / filetypes.vim
blob3e7c8f9eada3264b1e8dde4da57e46c8bb131a34
1 " To get syntax highlighting and tab settings for gyp(i) and DEPS files,
2 " add the following to your .vimrc file:
3 "     so /path/to/src/tools/vim/filetypes.vim
5 augroup filetype
6         au! BufRead,BufNewFile *.gyp    set filetype=python expandtab tabstop=2 shiftwidth=2
7         au! BufRead,BufNewFile *.gypi   set filetype=python expandtab tabstop=2 shiftwidth=2
8         au! BufRead,BufNewFile DEPS     set filetype=python expandtab tabstop=2 shiftwidth=2
9 augroup END