aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-05-21 15:32:23 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-05-21 15:32:23 +1200
commit4b461b56586b9f684f9d1193615524a0d1904db9 (patch)
treeb545e0107ef2de043756d696e68bc8ff220a3fdd
parentMerge branch 'hotfix/v9.9.2' into develop (diff)
parentBump VERSION (diff)
downloaddotfiles-4b461b56586b9f684f9d1193615524a0d1904db9.tar.gz
dotfiles-4b461b56586b9f684f9d1193615524a0d1904db9.zip
Merge branch 'hotfix/v9.9.3' into develop
* hotfix/v9.9.3: Add printcap filetype detection in Vim
-rw-r--r--VERSION4
-rw-r--r--vim/filetype.vim4
2 files changed, 6 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 9d21997f..4793ebf2 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v9.9.2
-Thu, 21 May 2020 02:22:44 +0000
+tejr dotfiles v9.9.3
+Thu, 21 May 2020 03:31:38 +0000
diff --git a/vim/filetype.vim b/vim/filetype.vim
index 91327ba0..70c57682 100644
--- a/vim/filetype.vim
+++ b/vim/filetype.vim
@@ -290,6 +290,10 @@ augroup filetypedetect
autocmd BufNewFile,BufRead
\ protocols
\ setfiletype protocols
+ " printcap(5) files
+ autocmd BufNewFile,BufRead
+ \ printcap
+ \ setfiletype ptcap
" Python files
autocmd BufNewFile,BufRead
\ ?*.py