diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-10-19 11:55:23 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-10-19 11:55:32 -0400 |
commit | 437fe261ab93e5b366fdcd095ccac7be1235b0eb (patch) | |
tree | 7857733e21bbbd4fdd54a57c659fcff348efc76c /runtime | |
parent | 1e4a9f9993a26a1495d1a3bdfd80fe079127ba83 (diff) | |
download | rneovim-437fe261ab93e5b366fdcd095ccac7be1235b0eb.tar.gz rneovim-437fe261ab93e5b366fdcd095ccac7be1235b0eb.tar.bz2 rneovim-437fe261ab93e5b366fdcd095ccac7be1235b0eb.zip |
vim-patch:8.1.2177: Dart files are not recognized
Problem: Dart files are not recognized.
Solution: Add a filetype rule. (Eugene Ciurana, closes vim/vim#5087)
https://github.com/vim/vim/commit/afbdb905c37675851e79d21239f502cd8e4ced9e
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index bbf9a91e2d..8ce45b6a50 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -421,6 +421,9 @@ au BufNewFile,BufRead *.csp,*.fdr setf csp au BufNewFile,BufRead *.pld setf cupl au BufNewFile,BufRead *.si setf cuplsim +" Dart +au BufRead,BufNewfile *.dart,*.drt setf dart + " Debian Control au BufNewFile,BufRead */debian/control setf debcontrol au BufNewFile,BufRead control |