Skip to content

Commit 14ddee7

Browse files
committed
Bug fix: Don't mistake 'D' for 'd' when &ignorecase is set
This is a bug fix for the previous commit, still related to xolox/vim-easytags#92 :-)
1 parent 3e2619e commit 14ddee7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ from the source code of the miscellaneous scripts using the Python module
3232
<!-- Start of generated documentation -->
3333

3434
The documentation of the 95 functions below was extracted from
35-
19 Vim scripts on April 1, 2015 at 23:32.
35+
19 Vim scripts on April 1, 2015 at 23:39.
3636

3737
### Asynchronous Vim script evaluation
3838

autoload/xolox/misc.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
" Last Change: April 1, 2015
55
" URL: http://peterodding.com/code/vim/misc/
66

7-
let g:xolox#misc#version = '1.17.3'
7+
let g:xolox#misc#version = '1.17.4'

autoload/xolox/misc/option.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function! xolox#misc#option#eval_tags(value, ...) " {{{1
9494
" Make buffer relative pathnames absolute.
9595
if pattern =~ '^\./'
9696
let suffix = matchstr(pattern, '^./\zs.*$')
97-
let directory = (&cpoptions =~ 'd') ? getcwd() : expand('%:p:h')
97+
let directory = (&cpoptions =~# 'd') ? getcwd() : expand('%:p:h')
9898
let pattern = xolox#misc#path#merge(directory, suffix)
9999
endif
100100
" Make working directory relative pathnames absolute.

doc/misc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ from the source code of the miscellaneous scripts using the Python module
164164
'vimdoctool.py' included in vim-tools [3].
165165

166166
The documentation of the 95 functions below was extracted from 19 Vim scripts
167-
on April 1, 2015 at 23:32.
167+
on April 1, 2015 at 23:39.
168168

169169
-------------------------------------------------------------------------------
170170
*misc-asynchronous-vim-script-evaluation*

0 commit comments

Comments
 (0)