Skip to content

Commit

Permalink
Merge pull request #82 from blueyed/f-dont-ignore-case
Browse files Browse the repository at this point in the history
Do not ignore case with `[f` and `]f`
  • Loading branch information
tpope committed Oct 14, 2014
2 parents 1bf6f16 + 9512b09 commit 3548479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/unimpaired.vim
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ function! s:FileByOffset(num)
while num
let files = s:entries(fnamemodify(file,':h'))
if a:num < 0
call reverse(sort(filter(files,'v:val < file')))
call reverse(sort(filter(files,'v:val <# file')))
else
call sort(filter(files,'v:val > file'))
call sort(filter(files,'v:val ># file'))
endif
let temp = get(files,0,'')
if temp == ''
Expand Down

0 comments on commit 3548479

Please sign in to comment.