mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
xonsh: formatting
This commit is contained in:
parent
faed3bdfcf
commit
e757c135d2
2 changed files with 12 additions and 14 deletions
|
@ -76,7 +76,6 @@ in {
|
|||
'';
|
||||
};
|
||||
|
||||
|
||||
enableNushellIntegration =
|
||||
lib.hm.shell.mkNushellIntegrationOption { inherit config; };
|
||||
|
||||
|
|
|
@ -197,20 +197,19 @@ in {
|
|||
}
|
||||
'';
|
||||
|
||||
xonshIntegration = ''
|
||||
def _y(args):
|
||||
tmp = $(mktemp -t "yazi-cwd.XXXXXX")
|
||||
args.append(f"--cwd-file={tmp}")
|
||||
$[yazi @(args)]
|
||||
with open(tmp) as f:
|
||||
cwd = f.read().strip()
|
||||
if cwd != $PWD:
|
||||
cd @(cwd)
|
||||
rm -f -- @(tmp)
|
||||
|
||||
xonshIntegration = ''
|
||||
def _y(args):
|
||||
tmp = $(mktemp -t "yazi-cwd.XXXXXX")
|
||||
args.append(f"--cwd-file={tmp}")
|
||||
$[yazi @(args)]
|
||||
with open(tmp) as f:
|
||||
cwd = f.read().strip()
|
||||
if cwd != $PWD:
|
||||
cd @(cwd)
|
||||
rm -f -- @(tmp)
|
||||
|
||||
aliases["${cfg.shellWrapperName}"] = _y
|
||||
'';
|
||||
aliases["${cfg.shellWrapperName}"] = _y
|
||||
'';
|
||||
in {
|
||||
bash.initExtra = mkIf cfg.enableBashIntegration bashIntegration;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue