Compare commits
1 Commits
v0.9
...
GHPS/Bette
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9ea667f201 |
@@ -133,7 +133,7 @@ def CMDConnect(aliases, command=False):
|
||||
|
||||
|
||||
def CMDList(option, opt, value, parser):
|
||||
print(', '.join(str(p) for p in conf.sections()))
|
||||
print(' '.join(str(p) for p in conf.sections()))
|
||||
|
||||
|
||||
def CMDFullList(option, opt, value, parser):
|
||||
|
||||
@@ -2,7 +2,7 @@ _sshch_complete()
|
||||
{
|
||||
local cur_word alias_list
|
||||
cur_word="${COMP_WORDS[COMP_CWORD]}"
|
||||
alias_list=`sshch -l | sed 's/,//g'`
|
||||
alias_list=`sshch -l`
|
||||
COMPREPLY=($(compgen -W "$alias_list" -- $cur_word))
|
||||
return 0
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user