spaces in file names? who would have thunk!
This commit is contained in:
parent
1b8649f6fc
commit
b6dbcf3c1d
1 changed files with 3 additions and 3 deletions
|
@ -20,13 +20,13 @@
|
|||
};
|
||||
opener = {
|
||||
edit-text = [
|
||||
{ run = "${config.programs.neovim.package}/bin/nvim $0"; block = true; }
|
||||
{ run = ''${config.programs.neovim.package}/bin/nvim "$0"''; block = true; }
|
||||
];
|
||||
terminal = [
|
||||
{ run = "${config.programs.kitty.package}/bin/kitty --class=yazi -d=$0"; orphan = true; }
|
||||
{ run = ''${config.programs.kitty.package}/bin/kitty --class=yazi -d="$0"''; orphan = true; }
|
||||
];
|
||||
open = [
|
||||
{ run = "${pkgs.xdg-utils}/bin/xdg-open $0"; orphan = true; }
|
||||
{ run = ''${pkgs.xdg-utils}/bin/xdg-open "$0"''; orphan = true; }
|
||||
];
|
||||
};
|
||||
open.rules = [
|
||||
|
|
Loading…
Reference in a new issue