Navigation Menu

Skip to content

Commit

Permalink
Remove debugging variables
Browse files Browse the repository at this point in the history
  • Loading branch information
tpope committed Nov 13, 2019
1 parent 468af51 commit 7e4da6e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions plugin/abolish.vim
Expand Up @@ -215,7 +215,6 @@ function! s:SubComplete(A,L,P)
endfunction

function! s:Complete(A,L,P)
let g:L = a:L
" Vim bug: :Abolish -<Tab> calls this function with a:A equal to 0
if a:A =~# '^[^/?-]' && type(a:A) != type(0)
return join(s:words(),"\n")
Expand Down Expand Up @@ -314,7 +313,6 @@ function! s:normalize_options(flags)
let opts = {}
let flags = a:flags
endif
let g:op1 = copy(opts)
if flags =~# 'w'
let opts.boundaries = 2
elseif flags =~# 'v'
Expand All @@ -324,7 +322,6 @@ function! s:normalize_options(flags)
endif
let opts.case = (flags !~# 'I' ? get(opts,'case',1) : 0)
let opts.flags = substitute(flags,'\C[avIiw]','','g')
let g:op2 = copy(opts)
return opts
endfunction

Expand Down

0 comments on commit 7e4da6e

Please sign in to comment.