Channel create action help #698
-
I would like this channel to only show markdown files and give me the ability to open/edit them in |
Beta Was this translation helpful? Give feedback.
Answered by
alexpasmantier
Aug 14, 2025
Replies: 1 comment 3 replies
-
|
Your channel looks perfectly fine :-) [metadata]
name = "markdown"
description = "A channel to select markdown files and edit them"
requirements = ["fd", "bat","vim"]
[source]
command = "fd -e md"
[preview]
command = "bat --color=always '{}'"
[ui]
preview_panel = { "size" = 70, "scrollbar" = true }
[keybindings]
shortcut = "f4"
ctrl-e = "actions:edit" # <------------- here
[actions.edit]
description = "Edit the file"
command = "vim {}"
mode = "execute" |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Actions were introduced in 0.13 so you'll need to upgrade to a more recent version to get the feature.