diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-21 12:04:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-21 12:04:06 -0400 |
| commit | 070e084a64dd08ff28c826843f0d61ca51837841 (patch) | |
| tree | 34a631b515f553447aa21f0400c8a576bb20dc61 /runtime/filetype.vim | |
| parent | e5bef5974e900001cb6ed302b39a6f5ddf48d9a4 (diff) | |
| parent | c620ca4cc2f5c0b3cebde2e172ed1682b06f4495 (diff) | |
| download | rneovim-070e084a64dd08ff28c826843f0d61ca51837841.tar.gz rneovim-070e084a64dd08ff28c826843f0d61ca51837841.tar.bz2 rneovim-070e084a64dd08ff28c826843f0d61ca51837841.zip | |
Merge pull request #14172 from janlazo/vim-8.2.2622
vim-patch:8.2.{2622,2624,2625,2626,2631,2634}
Diffstat (limited to 'runtime/filetype.vim')
| -rw-r--r-- | runtime/filetype.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 4130db2534..36352db533 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 @@ -1397,6 +1400,9 @@ else au BufNewFile,BufRead *.rmd,*.smd setf rmd endif +" RSS looks like XML +au BufNewFile,BufRead *.rss setf xml + " R reStructuredText file if has("fname_case") au BufNewFile,BufRead *.Rrst,*.rrst,*.Srst,*.srst setf rrst |