diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-20 22:11:48 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-20 22:27:47 -0400 |
commit | 429c6d2d4ff2c962d536974090810eecf1f958fb (patch) | |
tree | c3cb709da23fa062d246f54b327aee8e605413a7 /runtime | |
parent | e5bef5974e900001cb6ed302b39a6f5ddf48d9a4 (diff) | |
download | rneovim-429c6d2d4ff2c962d536974090810eecf1f958fb.tar.gz rneovim-429c6d2d4ff2c962d536974090810eecf1f958fb.tar.bz2 rneovim-429c6d2d4ff2c962d536974090810eecf1f958fb.zip |
vim-patch:8.2.2624: atom files not recognized
Problem: Atom files not recognized.
Solution: Recognize .atom as XML. (Kivin Locke, closes vim/vim#7986)
https://github.com/vim/vim/commit/74b99f6ab6e0265ebee4ed496845f28e0904318d
N/A patches for version.c:
vim-patch:8.2.2622: GTK: error when starting up and -geometry is given
Problem: GTK: error when starting up and -geometry is given. (Dominique
Pellé)
Solution: Use another function to get the monitor if the window has not been
created yet. (closes vim/vim#7978)
https://github.com/vim/vim/commit/a555e6fcb6ec97b5ab30b20a340b228f4d820f14
vim-patch:8.2.2626: GTK3: error when starting up and -geometry is given
Problem: GTK3: error when starting up and -geometry is given. (Dominique
Pellé)
Solution: Use another function to get the monitor if the window has not been
created yet. (closes vim/vim#7978)
https://github.com/vim/vim/commit/240014321b0aa5d6eb00a70865fa9935fd888d60
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 4130db2534..e0ebf5d528 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -164,6 +164,9 @@ au BufNewFile,BufRead *.mar setf vmasm " Atlas au BufNewFile,BufRead *.atl,*.as setf atlas +" Atom is based on XML +au BufNewFile,BufRead *.atom setf xml + " Autoit v3 au BufNewFile,BufRead *.au3 setf autoit |