You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#29 for #27 made abbr -a y ls -l && ls -l show 💡 y => ls -l - thank you @gazorby!
It also DOES work for an alias (which is just a Fish function --wraps), as long as I type that alias on the prompt, for example this is great:
$ alias c="bat "
$ functions c
# Defined via `source`function c --wraps='bat '--description'alias c=bat '
bat $argvend
$ bat ~/.gitconfig
(...)
💡 c => bat
What I'm struggling with is to get this to work for aliases defined inside a Fish script....
To Reproduce
Steps to reproduce the behavior:
$ functions--erase c
$ echo'alias c="bat "'>repro.fish
$ source repro.fish
$ functions c
# Defined via `source`function c --wraps='bat '--description'alias c=bat '
bat $argvend
$ bat repro.fish
(...)
# Does *NOT* print 💡 c => bat
Expected behavior
💡 c => bat
System (please complete the following information):
fish, version 3.6.0
Fedora 37 Workstation
The text was updated successfully, but these errors were encountered:
Describe the bug
#29 for #27 made
abbr -a y ls -l
&&ls -l
show 💡y => ls -l
- thank you @gazorby!It also DOES work for an
alias
(which is just a Fishfunction --wraps
), as long as I type thatalias
on the prompt, for example this is great:What I'm struggling with is to get this to work for aliases defined inside a Fish script....
To Reproduce
Steps to reproduce the behavior:
Expected behavior
💡 c => bat
System (please complete the following information):
The text was updated successfully, but these errors were encountered: