-
-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #611 from Freed-Wu/main
Add support for shell completion
- Loading branch information
Showing
6 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Complete keyring backends for `keyring -b` from `keyring --list-backends` | ||
# % keyring -b <TAB> | ||
# keyring priority | ||
# keyring.backends.chainer.ChainerBackend 10 | ||
# keyring.backends.fail.Keyring 0 | ||
# ... ... | ||
|
||
backend_complete() { | ||
local line | ||
while read -r line; do | ||
choices+=(${${line/ \(priority: /\\\\:}/)/}) | ||
done <<< "$($words[1] --list-backends)" | ||
_arguments "*:keyring priority:(($choices))" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import argparse | ||
import sys | ||
|
||
try: | ||
import shtab | ||
except ImportError: | ||
pass | ||
|
||
if sys.version_info < (3, 9): | ||
from importlib_resources import files | ||
else: | ||
from importlib.resources import files | ||
|
||
|
||
class _MissingCompletionAction(argparse.Action): | ||
def __call__(self, parser, namespace, values, option_string): | ||
print("Install keyring[completion] for completion support.") | ||
parser.exit(0) | ||
|
||
|
||
def add_completion_notice(parser): | ||
"""Add completion argument to parser.""" | ||
parser.add_argument( | ||
"--print-completion", | ||
choices=["bash", "zsh", "tcsh"], | ||
action=_MissingCompletionAction, | ||
help="print shell completion script", | ||
) | ||
return parser | ||
|
||
|
||
def get_action(parser, option): | ||
(match,) = (action for action in parser._actions if option in action.option_strings) | ||
return match | ||
|
||
|
||
def install_completion(parser): | ||
preamble = dict( | ||
zsh=files(__package__).joinpath('backend_complete.zsh').read_text(), | ||
) | ||
shtab.add_argument_to(parser, preamble=preamble) | ||
get_action(parser, '--keyring-path').completion = shtab.DIR | ||
get_action(parser, '--keyring-backend').completion = dict(zsh='backend_complete') | ||
return parser | ||
|
||
|
||
def install(parser): | ||
try: | ||
install_completion(parser) | ||
except NameError: | ||
add_completion_notice(parser) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters