summaryrefslogtreecommitdiff
path: root/runtime/filetype.vim
diff options
context:
space:
mode:
authorAmaan Qureshi <amaanq12@gmail.com>2023-02-02 13:30:13 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-02 13:30:13 +0000
commit685bf83b73d0fe6fd36bb2949bebd6aae66a139e (patch)
treeb1b426a75df7d17d4f481a8f65282940651d6dce /runtime/filetype.vim
parent8f531662e28c37560bf5ac20a059bf00d01ee5a4 (diff)
downloadvim-git-685bf83b73d0fe6fd36bb2949bebd6aae66a139e.tar.gz
patch 9.0.1274: FIRRTL files are not recognizedv9.0.1274
Problem: FIRRTL files are not recognized. Solution: Add a pattern for FIRRTL files. (Amaan Qureshi, closes #11931)
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r--runtime/filetype.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 7810077cd..6fa16a7e0 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -671,6 +671,9 @@ autocmd BufRead,BufNewFile *.fnl setf fennel
" Fetchmail RC file
au BufNewFile,BufRead .fetchmailrc setf fetchmail
+" FIRRTL - Flexible Internal Representation for RTL
+au BufNewFile,BufRead *.fir setf firrtl
+
" Fish shell
au BufNewFile,BufRead *.fish setf fish