Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: tools/bash-completion.sh

Issue 9363025: Bash completion for d8: fix directory name completion (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bash-completion.sh
diff --git a/tools/bash-completion.sh b/tools/bash-completion.sh
index 07d9a5c51546037e264b8245b4d37996e54648f1..9f65c677317536ae284b29f362e6aa5fce4b88fd 100755
--- a/tools/bash-completion.sh
+++ b/tools/bash-completion.sh
@@ -48,8 +48,8 @@ _v8_flag() {
cat src/d8.cc \
| grep "strcmp(argv\[i\]" \
| sed -ne 's/^[^"]*"--\([^"]*\)".*/--\1/p')
- COMPREPLY=($(compgen -W "$targets" -- "$cur") $(compgen -f -- "$cur"))
+ COMPREPLY=($(compgen -W "$targets" -- "$cur"))
return 0
}
-complete -F _v8_flag d8
+complete -F _v8_flag -f d8
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698