Browse Source

python: add recurse flag to pygrep (#8217)

As described in #7053
Maciej Motyka 5 years ago
parent
commit
c5b4613bf6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/python/python.plugin.zsh

+ 1 - 1
plugins/python/python.plugin.zsh

@@ -11,5 +11,5 @@ function pyclean() {
 }
 
 # Grep among .py files
-alias pygrep='grep --include="*.py"'
+alias pygrep='grep -r --include="*.py"'