linux-qubasis

linux oasis port as a qubes template

git clone https://9o.is/git/linux-qubasis.git

commit 2fd3093c744ec54c2d7a7ff019ee61301f6d50fd
parent aea21246c87f790bb6a29fc3c2c0d44c86f359dd
Author: Jul <jul@9o.is>
Date:   Thu, 31 Jul 2025 22:46:14 -0400

remove fzy warning from multi-selection patch

Diffstat:
Mpkg/fzy/patches/0003-add-multi-selection.patch | 12++++++------
Mpkg/fzy/patches/0004-truncate-entries-to-terminal-width.patch | 4++--
Mpkg/fzy/patches/0005-add-half-page-up-down-vi-actions.patch | 4++--
3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/pkg/fzy/patches/0003-add-multi-selection.patch b/pkg/fzy/patches/0003-add-multi-selection.patch @@ -1,4 +1,4 @@ -From 46be6d0fb07fa23cb2e2740b31c0f7208242e770 Mon Sep 17 00:00:00 2001 +From d8f69837fff03162e77c7eabacc39fbb4d139f15 Mon Sep 17 00:00:00 2001 From: Jul <jul@qh.is> Date: Thu, 31 Jul 2025 03:34:16 -0400 Subject: [PATCH 3/5] add multi-selection @@ -21,7 +21,7 @@ index 00d3740..27a83ce 100644 #ifdef __cplusplus } diff --git a/src/tty_interface.c b/src/tty_interface.c -index 6828be8..ecff1d6 100644 +index 6828be8..fc2a59a 100644 --- a/src/tty_interface.c +++ b/src/tty_interface.c @@ -7,6 +7,126 @@ @@ -129,7 +129,7 @@ index 6828be8..ecff1d6 100644 + +/* Free the size_t array generated by init_selection_marks() */ +static void -+free_selection_marks(tty_interface_t *state) ++free_selection_marks() +{ + if (DEFAULT_MULTI == 1) { + free(selection_marks); @@ -204,7 +204,7 @@ index 6828be8..ecff1d6 100644 + if (DEFAULT_MULTI == 1) { + char **s = save_selections(state); -+ free_selection_marks(state); ++ free_selection_marks(); + + if (s) { + clear(state); @@ -246,7 +246,7 @@ index 6828be8..ecff1d6 100644 - if (state->exit >= 0) + if (state->exit >= 0) { -+ free_selection_marks(state); ++ free_selection_marks(); return state->exit; + } @@ -258,7 +258,7 @@ index 6828be8..ecff1d6 100644 - if (state->exit >= 0) + if (state->exit >= 0) { -+ free_selection_marks(state); ++ free_selection_marks(); return state->exit; + } } diff --git a/pkg/fzy/patches/0004-truncate-entries-to-terminal-width.patch b/pkg/fzy/patches/0004-truncate-entries-to-terminal-width.patch @@ -1,4 +1,4 @@ -From 9496f88eda3de63e1cced43398402a53f6ee21de Mon Sep 17 00:00:00 2001 +From 9de07c643f5b9efc5d9e69a2ccbfb8500486543a Mon Sep 17 00:00:00 2001 From: Jul <jul@qh.is> Date: Thu, 31 Jul 2025 05:34:48 -0400 Subject: [PATCH 4/5] truncate entries to terminal width @@ -8,7 +8,7 @@ Subject: [PATCH 4/5] truncate entries to terminal width 1 file changed, 4 insertions(+) diff --git a/src/tty_interface.c b/src/tty_interface.c -index ecff1d6..9944af1 100644 +index fc2a59a..1e643a5 100644 --- a/src/tty_interface.c +++ b/src/tty_interface.c @@ -179,6 +179,10 @@ static void draw_match(tty_interface_t *state, const char *choice, int selected) diff --git a/pkg/fzy/patches/0005-add-half-page-up-down-vi-actions.patch b/pkg/fzy/patches/0005-add-half-page-up-down-vi-actions.patch @@ -1,4 +1,4 @@ -From 18e67f8559034152c57dafe5b9dfafd82e4ffbf0 Mon Sep 17 00:00:00 2001 +From af3bd5f0af329439923fa98f1398583ae859dfac Mon Sep 17 00:00:00 2001 From: Jul <jul@qh.is> Date: Thu, 31 Jul 2025 22:37:31 -0400 Subject: [PATCH 5/5] add half page up down vi actions @@ -8,7 +8,7 @@ Subject: [PATCH 5/5] add half page up down vi actions 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/tty_interface.c b/src/tty_interface.c -index 9944af1..005e443 100644 +index 1e643a5..3dc00f0 100644 --- a/src/tty_interface.c +++ b/src/tty_interface.c @@ -331,11 +331,6 @@ static void action_del_word(tty_interface_t *state) {