mirror of
https://github.com/jarun/nnn.git
synced 2024-11-17 16:39:14 +00:00
Create quitcd script for nushell
This commit is contained in:
parent
2a38132012
commit
69882b3bff
18
misc/quitcd/quitcd.nu
Normal file
18
misc/quitcd/quitcd.nu
Normal file
|
@ -0,0 +1,18 @@
|
|||
# The behaviour is set to cd on quit (nnn checks if NNN_TMPFILE is set)
|
||||
let cfgHome = ($env | default $env.HOME XDG_CONFIG_HOME | get XDG_CONFIG_HOME)
|
||||
let-env NNN_TMPFILE = $"($cfgHome)/.config/nnn/.lastd"
|
||||
|
||||
def-env n [...x] {
|
||||
# Launch nnn. Add desired flags after `^nnn`, ex: `^nnn -eda ($x | str join)`
|
||||
^nnn ($x | str join)
|
||||
let newpath = (
|
||||
if ($env.NNN_TMPFILE | path exists) {
|
||||
let newpath = (open $env.NNN_TMPFILE | parse 'cd "{nnnpath}"').0.nnnpath
|
||||
^rm -f $env.NNN_TMPFILE
|
||||
echo $newpath
|
||||
} else {
|
||||
pwd
|
||||
}
|
||||
)
|
||||
cd $newpath
|
||||
}
|
Loading…
Reference in a new issue