11 lines
213 B
Fish
Executable File
11 lines
213 B
Fish
Executable File
function __autols_hook --description "Auto ls" --on-event fish_prompt
|
|
if test "$NO_AUTO_LS" != ""
|
|
return
|
|
end
|
|
|
|
if test "$__autols_last" != (pwd)
|
|
echo; lsd -lah
|
|
end
|
|
set -g __autols_last (pwd)
|
|
end
|