Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autoload/ack.vim
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function! ack#Ack(cmd, args)
let l:grepargs = a:args . join(a:000, ' ')
end
echom l:grepargs
let l:ackprg_run = g:ackprg
let l:ackprg_run = g:ackprg . g:ack_default_options

" Format, used to manage column jump
if a:cmd =~# '-g$'
Expand Down
2 changes: 1 addition & 1 deletion plugin/ack.vim
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if !exists("g:ackprg")
else
finish
endif
let g:ackprg .= g:ack_default_options
"let g:ackprg .= g:ack_default_options
endif

if !exists("g:ack_apply_qmappings")
Expand Down