AutoYADM commit: 2025-05-21 16:45:14

This commit is contained in:
Daniel Fichtinger 2025-05-21 16:45:14 -04:00
parent 3dba6d45c5
commit 050b548393
3 changed files with 21 additions and 4 deletions

View file

@ -0,0 +1,6 @@
function kakkill --description 'select kakoune sessions to kill'
set ids (kak -l | fzf --multi)
for id in $ids
echo kill | kak -p "$id"
end
end