rust-selection-sort.kak/README.adoc

19 lines
425 B
Plaintext
Raw Normal View History

2022-01-22 18:25:22 -05:00
= rust-selection-sort.kak
== Configuration
[source,title='kakrc']
----
define-command s -params 0..1 %{
eval -save-regs '"' %{
reg dquote %val{selections}
eval %sh{
regex="${1:-.*}"
eval set -- "$kak_quoted_selections"
~/syncthing/code/rust-selection-sort.kak/target/debug/rust-selection-sort "$regex" "$@" > "$kak_command_fifo"
}
exec R
}
}
----