From 74b99f6ab6e0265ebee4ed496845f28e0904318d Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 19 Mar 2021 20:19:12 +0100 Subject: patch 8.2.2624: atom files not recognized Problem: Atom files not recognized. Solution: Recognize .atom as XML. (Kivin Locke, closes #7986) --- runtime/filetype.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'runtime/filetype.vim') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 1a18a651e..e907630b4 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -168,6 +168,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 -- cgit v1.2.1