From cd1fcbbda0289bc7408de585298ba817fe912882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 11 Mar 2024 01:13:03 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style(yazi):=20code=20alignment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/yazi/keymap.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.config/yazi/keymap.toml b/.config/yazi/keymap.toml index b9abfa31..e284af4a 100644 --- a/.config/yazi/keymap.toml +++ b/.config/yazi/keymap.toml @@ -5,42 +5,42 @@ prepend_keymap = [ { on = [ "", - ], exec = '''shell "$SHELL" --block --confirm''', desc = "Open shell here" }, + ], run = '''shell "$SHELL" --block --confirm''', desc = "Open shell here" }, ] append_keymap = [ { on = [ "e", - ], exec = "open", desc = "Open the selected files" }, + ], run = "open", desc = "Open the selected files" }, { on = [ "E", - ], exec = "open --interactive", desc = "Open the selected files interactively" }, + ], run = "open --interactive", desc = "Open the selected files interactively" }, { on = [ "g", "n", - ], exec = "cd ~/.config/nvim", desc = "Go to the nvim directory" }, + ], run = "cd ~/.config/nvim", desc = "Go to the nvim directory" }, { on = [ "g", "v", - ], exec = "cd ~/Videos", desc = "Go to the videos directory" }, + ], run = "cd ~/Videos", desc = "Go to the videos directory" }, { on = [ "g", "i", - ], exec = "cd ~/Imagenes", desc = "Go to the images directory" }, + ], run = "cd ~/Imagenes", desc = "Go to the images directory" }, { on = [ "g", "D", - ], exec = "cd ~/Documentos", desc = "Go to the docs directory" }, + ], run = "cd ~/Documentos", desc = "Go to the docs directory" }, { on = [ "g", "o", - ], exec = "cd ~/Documentos/Obsidian/obsidianVault/", desc = "Go to the obsidian directory" }, + ], run = "cd ~/Documentos/Obsidian/obsidianVault/", desc = "Go to the obsidian directory" }, { on = [ "g", "r", - ], exec = "cd ~/Repos", desc = "Go to the repos directory" }, + ], run = "cd ~/Repos", desc = "Go to the repos directory" }, ] [input] -prepend_keymap = [{ on = [""], exec = "close", desc = "Cancel input" }] +prepend_keymap = [{ on = [""], run = "close", desc = "Cancel input" }]