diff options
author | Hugo Osvaldo Barrera <hugo@barrera.io> | 2022-06-29 13:48:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-06-29 13:48:49 +0100 |
commit | 040674129f3382822eeb7b590380efa5228124a8 (patch) | |
tree | 3b0597992ba9aa1c1142f5dc26b9243643602591 /runtime | |
parent | d14bb1aef9a142f403aa16298c23db2751de9391 (diff) | |
download | vim-git-040674129f3382822eeb7b590380efa5228124a8.tar.gz |
patch 9.0.0005: hare files are not recognizedv9.0.0005
Problem: Hare files are not recognized.
Solution: Add a filetype pattern. (Hugo Osvaldo Barrera, closes #10630)
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 c9ee28bfb..6280d32e5 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -789,6 +789,9 @@ au BufNewFile,BufRead *.hsm setf hamster " Handlebars au BufNewFile,BufRead *.hbs setf handlebars +" Hare +au BufNewFile,BufRead *.ha setf hare + " Haskell au BufNewFile,BufRead *.hs,*.hsc,*.hs-boot,*.hsig setf haskell au BufNewFile,BufRead *.lhs setf lhaskell |