mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix rg/ag in eshell #1122
Arguments aren't implicitly passed to aliases.
This commit is contained in:
@ -22,8 +22,8 @@ buffer.")
|
||||
'(("q" "exit") ; built-in
|
||||
("f" "find-file $1")
|
||||
("bd" "eshell-up $1") ; `eshell-up'
|
||||
("rg" "rg --color=always")
|
||||
("ag" "ag --color=always")
|
||||
("rg" "rg --color=always $*")
|
||||
("ag" "ag --color=always $*")
|
||||
("l" "ls -lh")
|
||||
("ll" "ls -lah")
|
||||
("clear" "clear-scrollback")) ; more sensible than default
|
||||
|
Reference in New Issue
Block a user