File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
" Vim auto-load script
2
2
" Author: Peter Odding <peter@peterodding.com>
3
- " Last Change: June 17 , 2014
3
+ " Last Change: June 18 , 2014
4
4
" URL: http://peterodding.com/code/vim/notes/
5
5
6
6
" Note: This file is encoded in UTF-8 including a byte order mark so
7
7
" that Vim loads the script using the right encoding transparently.
8
8
9
- let g: xolox #notes#version = ' 0.23.7 '
9
+ let g: xolox #notes#version = ' 0.23.8 '
10
10
let g: xolox #notes#url_pattern = ' \<\(mailto:\|javascript:\|\w\{3,}://\)\(\S*\w\)\+/\?'
11
11
let s: scriptdir = expand (' <sfile>:p:h' )
12
12
@@ -1134,6 +1134,9 @@ function! s:syntax_include(filetype)
1134
1134
try
1135
1135
execute ' syntax include' grouplistname ' syntax/' . a: filetype . ' .vim'
1136
1136
execute ' syntax include' grouplistname ' after/syntax/' . a: filetype . ' .vim'
1137
+ catch /E403/
1138
+ " Ignore errors about syntax scripts that can't be loaded more than once.
1139
+ " See also: https://github.com/xolox/vim-notes/issues/68
1137
1140
catch /E484/
1138
1141
" Ignore missing scripts.
1139
1142
endtry
You can’t perform that action at this time.
0 commit comments