From 37ebe9f20a784cf8f1b3ba96fb1d008a0f6538d6 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Mon, 29 Jan 2024 04:21:10 +0800 Subject: [PATCH] docs: break long lines --- docs/tips.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/tips.md b/docs/tips.md index 0adf1758..57b16f81 100644 --- a/docs/tips.md +++ b/docs/tips.md @@ -73,7 +73,7 @@ You can change the `` of input component from the default `escape` to `clos ```toml [input] prepend_keymap = [ - { on = [ "" ], exec = "close", desc = "Cancel input" } + { on = [ "" ], exec = "close", desc = "Cancel input" }, # ...Your other keybindings if any ] ``` @@ -98,7 +98,12 @@ Then bind it for `l` key, in your `keymap.toml`: ```toml [manager] prepend_keymap = [ - { on = [ "l" ], exec = "plugin --sync smart-enter", desc = "Enter the child directory, or open the file" }, + { + on = [ "l" ], + exec = "plugin --sync smart-enter", + desc = "Enter the child directory, or open the file" + }, + # ...Your other keybindings if any ] ``` @@ -140,7 +145,7 @@ The above is available on X11, there is also a Wayland version (Thanks [@hurutpa prepend_keymap = [ { on = [ "y" ], exec = [ "yank", ''' shell --confirm 'for path in "$@"; do echo "file://$path"; done | wl-copy -t text/uri-list' - ''' ] } + ''' ] }, # ...Your other keybindings if any ]