From: Henri Bourcereau Date: Tue, 7 Mar 2023 14:40:10 +0000 (+0100) Subject: Fix paths in nushell quitcd script X-Git-Tag: v4.8~6^2 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=eaffd311d49e18731f1f8c3cf05500f92fffecdc;p=nnn.git Fix paths in nushell quitcd script This set the correct path to the temp nnn file when XDG_CONFIG_HOME is set. It fixes https://github.com/jarun/nnn/discussions/1605 --- diff --git a/misc/quitcd/quitcd.nu b/misc/quitcd/quitcd.nu index f291e5a7..f89acb72 100644 --- a/misc/quitcd/quitcd.nu +++ b/misc/quitcd/quitcd.nu @@ -1,6 +1,6 @@ # 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" +let cfgHome = ($env | default $"($env.HOME)/.config" XDG_CONFIG_HOME | get XDG_CONFIG_HOME) +let-env NNN_TMPFILE = $"($cfgHome)/nnn/.lastd" def-env n [...x] { # Launch nnn. Add desired flags after `^nnn`, ex: `^nnn -eda ($x | str join)`