Skip to content

Commit

Permalink
fix multiple selections loop
Browse files Browse the repository at this point in the history
  • Loading branch information
theowenyoung committed Sep 22, 2022
1 parent 3f0a914 commit efd0493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rc/buffer-manager.kak
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ define-command -hidden -override buffer-manager-open %{
define-command -override -hidden buffer-manager-select %{
eval %sh{
lines=();
for val in "$kak_selections_desc";
for val in $kak_selections_desc;
do
left_field=$(echo $val | cut -f1 -d,)
right_field=$(echo $val | cut -f2 -d,)
Expand Down

0 comments on commit efd0493

Please sign in to comment.