From f46ddd3230db4a12b319a35a393bf447c613007a Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Thu, 24 Dec 2020 03:24:15 +1100 Subject: Remove 'n' and 'N' search inc/dec keybinds --- IncSet.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'IncSet.c') diff --git a/IncSet.c b/IncSet.c index af8e3aef..3c1d519b 100644 --- a/IncSet.c +++ b/IncSet.c @@ -133,14 +133,6 @@ static bool IncMode_find(IncMode* mode, Panel* panel, IncMode_GetPanelValue getP } } -bool IncSet_next(IncSet* this, IncType type, Panel* panel, IncMode_GetPanelValue getPanelValue) { - return IncMode_find(&this->modes[type], panel, getPanelValue, 1); -} - -bool IncSet_prev(IncSet* this, IncType type, Panel* panel, IncMode_GetPanelValue getPanelValue) { - return IncMode_find(&this->modes[type], panel, getPanelValue, -1); -} - bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue getPanelValue, Vector* lines) { if (ch == ERR) return true; -- cgit v1.2.3