You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
302 B
13 lines
302 B
5 years ago
|
# Use lf to switch directories and bind it to ctrl-o
|
||
|
lfcd () {
|
||
5 years ago
|
tmp="$(mktemp)"
|
||
5 years ago
|
lf -last-dir-path="$tmp" "$@"
|
||
5 years ago
|
if [ -f "$tmp" ]; then
|
||
|
dir="$(cat "$tmp")"
|
||
|
rm -f "$tmp"
|
||
|
[ -d "$dir" ] && [ "$dir" != "$(pwd)" ] && cd "$dir"
|
||
|
fi
|
||
|
}
|
||
5 years ago
|
alias lf="lfcd"
|
||
|
bindkey -s '^o' 'lf\n'
|