faho on master
complete: Print better error fo… completions/git: Print all know… (compare)
@krobelus thank you so much! on second glance it's in the tutorial here https://fishshell.com/docs/current/tutorial.html#autosuggestions.
For my own education, though, what do you mean by "readline for 'right-arrow'"? A quick Google only got me here -- https://unix.stackexchange.com/a/364532/128049 -- but it's not super clear to me.
fish stackoverflows when i have
alias foo=ls
alias ls=foo
and enter one of foo
or ls
--print
or --style=
. Options and such. It still offers files for the most part, because they decided not to disable them.
bash-3.2$ alias hostname=uname
bash-3.2$ alias uname=hostname
bash-3.2$ uname
Darwin
bash-3.2$ hostname
M1.local
realpath -e (command -v $SOMECOMMAND)
so I'd like to create an abbreviation that expands to realpath -e (command -v )
where the cursor is just before the closing paren. or can I create a function but still get $PATH
-based autocomplete like with command -v
?
ls
in bash with this: LS_COLORS="di=1;31"
in fish would it be set -Ux LS_COLORS "di=1;31"
?
term
since vterm works fine with all the fancy terminal stuff. but the vi cursor works fine in emacs vterm, even though fish_vi_cursor
only checks INSIDE_EMACS
, which is set to vterm
in vterm. this should cause it to exit, yet the vi cursor works fine somehow?