Skip to content

Commit 87dc4a5

Browse files
author
ianmacd
committed
- properly skip classpath string in Java completion
1 parent 211fe94 commit 87dc4a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bash_completion

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bash_completion - some programmable completion functions for bash 2.05b
22
#
3-
# $Id: bash_completion,v 1.618 2003/08/22 07:12:51 ianmacd Exp $
3+
# $Id: bash_completion,v 1.619 2003/09/11 00:21:25 ianmacd Exp $
44
#
55
# Copyright (C) Ian Macdonald <[email protected]>
66
#
@@ -3438,7 +3438,7 @@ _java()
34383438
for ((i=1; i < $COMP_CWORD; i++)); do
34393439
case ${COMP_WORDS[$i]} in
34403440
-cp|-classpath)
3441-
continue # skip the classpath string.
3441+
break # skip the classpath string.
34423442
;;
34433443
-*)
34443444
# this is an option, not a class/jarfile name.

0 commit comments

Comments
 (0)