aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/tabs_grep.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/tabs_grep.vim')
-rw-r--r--plugin/tabs_grep.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/tabs_grep.vim b/plugin/tabs_grep.vim
index 1e811cf..644bf44 100644
--- a/plugin/tabs_grep.vim
+++ b/plugin/tabs_grep.vim
@@ -16,7 +16,7 @@ endfunction
function! s:MatchString(search, index, value)
return match(a:value, a:search) != -1 ||
- \ match(a:value, '\vTab page \d+') != -1
+ \ s:IsTabPageLine(a:value)
endfunction
function! s:IsTabPageLine(line)