annotate mcabber/contrib/vim/mcabber_log-ftdetect.vim @ 2289:a63814f2e4c8

contrib/vim: Support reloading filetype detection Merge Gentoo patch. Thanks to Amadeusz Żołnowski and Wolfram Schlich.
author Mikael Berthe <mikael@lilotux.net>
date Wed, 21 Dec 2016 20:30:56 +0100
parents c5b2789443c3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1853
32bceb73895c Update Vim syntax script, add a ftdetect script
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
1 "
32bceb73895c Update Vim syntax script, add a ftdetect script
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
2 " Save this file in your ~/.vim/ftdetect/ folder
32bceb73895c Update Vim syntax script, add a ftdetect script
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
3
2289
a63814f2e4c8 contrib/vim: Support reloading filetype detection
Mikael Berthe <mikael@lilotux.net>
parents: 1855
diff changeset
4 function! MCabber_log_ftdetect()
1853
32bceb73895c Update Vim syntax script, add a ftdetect script
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
5 if getline(1) =~ '^\u. \d\{8}T\d\d:\d\d:\d\dZ \d\{3} '
1855
c5b2789443c3 Do not use setfiletype command in mcabber_log-ftdetect.vim
Mikael Berthe <mikael@lilotux.net>
parents: 1853
diff changeset
6 setlocal filetype=mcabber_log
1853
32bceb73895c Update Vim syntax script, add a ftdetect script
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
7 endif
32bceb73895c Update Vim syntax script, add a ftdetect script
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
8 endfunction
32bceb73895c Update Vim syntax script, add a ftdetect script
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
9
32bceb73895c Update Vim syntax script, add a ftdetect script
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
10 autocmd BufRead */*mcabber/histo/* call MCabber_log_ftdetect()