We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84bbbc5 commit 16535e2Copy full SHA for 16535e2
src/shelloracle/shell/shelloracle.bash
@@ -1,6 +1,6 @@
1
__shelloracle__() {
2
local output
3
- output=$(python3 -m shelloracle) || return
+ output=$(shor) || return
4
READLINE_LINE=${output#*$'\t'}
5
if [[ -z "$READLINE_POINT" ]]; then
6
echo "$READLINE_LINE"
src/shelloracle/shell/shelloracle.zsh
@@ -4,7 +4,7 @@ shelloracle-widget() {
setopt localoptions noglobsubst noposixbuiltins pipefail no_aliases 2> /dev/null
# Run the shelloracle python module and store the result in the "selected" array
7
- local selected=( $(SHOR_DEFAULT_PROMPT=${LBUFFER} python3 -m shelloracle) )
+ local selected=( $(SHOR_DEFAULT_PROMPT=${LBUFFER} shor) )
8
9
# Get the return status of the last executed command
10
local ret=$?
0 commit comments