mirror of
https://github.com/oh-my-fish/theme-bobthefish.git
synced 2024-10-27 20:34:23 +00:00
Use status current-command
for title
Why: 1. `$_` is marked as deprecated https://fishshell.com/docs/current/language.html#envvar-_ 2. `$_` contains wrong process name in cases like this one: ```fish sleep 1000 # `sleep` is the process, now press Ctrl-Z to suspend fg # unsuspend it, now `fg` is shown as the process ``` `status current-command` will show `sleep` instead, which makes more sense.
This commit is contained in:
parent
c2c47dc964
commit
05c0765c4e
@ -18,7 +18,7 @@ function fish_title
|
||||
__bobthefish_title_user
|
||||
|
||||
if [ "$theme_title_display_process" = 'yes' ]
|
||||
echo $_
|
||||
status current-command
|
||||
|
||||
[ "$theme_title_display_path" != 'no' ]
|
||||
and echo ' '
|
||||
|
Loading…
Reference in New Issue
Block a user