AutoYADM commit: 2025-05-18 17:38:24
This commit is contained in:
parent
449bde13ad
commit
a3cfd3cf86
2 changed files with 10 additions and 1 deletions
|
@ -4,7 +4,12 @@ define-command fish -params 1.. -docstring %{
|
||||||
fish [code]: Execute provided fish code, evaluating its output as Kakoune commands.
|
fish [code]: Execute provided fish code, evaluating its output as Kakoune commands.
|
||||||
} %{
|
} %{
|
||||||
evaluate-commands %sh{
|
evaluate-commands %sh{
|
||||||
fish -c "eval $@"
|
vars=$(
|
||||||
|
printf %s "$1" | grep -o 'kak_\w*' | sort -u | tr '\n' ' '
|
||||||
|
)
|
||||||
|
notify-send "$vars"
|
||||||
|
args='"$@"'
|
||||||
|
printf %s "eval %sh{ fish -c $args # $vars} "
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,10 @@ eval %sh{ kak-tree-sitter -vvvvv -dks --init $kak_session }
|
||||||
colorscheme ashen
|
colorscheme ashen
|
||||||
require-module fishr
|
require-module fishr
|
||||||
|
|
||||||
|
fish %{
|
||||||
|
echo "notify-send $kak_buffile"
|
||||||
|
}
|
||||||
|
|
||||||
set-option global ashen_dynamic_cursor true
|
set-option global ashen_dynamic_cursor true
|
||||||
set-option global ashen_eol_cursor true
|
set-option global ashen_eol_cursor true
|
||||||
# disable clippy
|
# disable clippy
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue