Skip to content

Commit

Permalink
Add support for running ucg without arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
yegappan committed May 27, 2018
1 parent cb59b37 commit ec97e86
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions autoload/grep.vim
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
" File: grep.vim
" Author: Yegappan Lakshmanan (yegappan AT yahoo DOT com)
" Version: 2.2
" Last Modified: May 26, 2018
" Last Modified: May 27, 2018
"
" Plugin to integrate grep like utilities with Vim
" Supported utilities are: grep, fgrep, egrep, agrep, findstr, ag, ack,
" ripgrep, git grep, sift, platinum searcher and universal code grep
" ripgrep, git grep, sift, platinum searcher and universal code grep.
"
" License: MIT License
" Copyright (c) 2002-2018 Yegappan Lakshmanan
Expand Down Expand Up @@ -591,7 +591,8 @@ function! s:recursive_search_cmd(cmd_name)
\ a:cmd_name == 'rg' ||
\ a:cmd_name == 'ack' ||
\ a:cmd_name == 'git' ||
\ a:cmd_name == 'pt'
\ a:cmd_name == 'pt' ||
\ a:cmd_name == 'ucg'
endfunction

" formFullCmd()
Expand Down

0 comments on commit ec97e86

Please sign in to comment.