summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorMarcin Szamotulski <profunctor@pm.me>2021-05-23 11:18:50 +0200
committerBram Moolenaar <Bram@vim.org>2021-05-23 11:18:50 +0200
commitf5409dbf66f4e4a0461d3f2079c1bffacbf12392 (patch)
tree50815367cc3770ae236e16e06ac0cf5220492d9d /runtime
parentb777da9be8eb421982e567702db3195475383dec (diff)
patch 8.2.2879: file extension .hsig not recognizedv8.2.2879
Problem: File extension .hsig not recognized. Solution: Use Haskell filetype for .hsig files. (Marcin Szamotulski, closes #8236)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 3b7d60412d..b1eb2ecbea 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -718,7 +718,7 @@ au BufNewFile,BufRead *.haml setf haml
au BufNewFile,BufRead *.hsm setf hamster
" Haskell
-au BufNewFile,BufRead *.hs,*.hsc,*.hs-boot setf haskell
+au BufNewFile,BufRead *.hs,*.hsc,*.hs-boot,*.hsig setf haskell
au BufNewFile,BufRead *.lhs setf lhaskell
au BufNewFile,BufRead *.chs setf chaskell
au BufNewFile,BufRead cabal.project setf cabalproject