remove confusing behavior ^Y - iomenu - interactive terminal-based selection menu
HTML git clone git://bitreich.org/iomenu git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/iomenu
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
DIR commit cd0632ced34f04b758489ce6c273b9a4e30abeca
DIR parent d319a26ebb38753dcd3456e8aae6771b55086ef2
HTML Author: Josuah Demangeon <mail@josuah.net>
Date: Fri, 28 Apr 2017 20:04:54 +0200
remove confusing behavior ^Y
Diffstat:
M iomenu.1 | 3 ---
M iomenu.c | 4 ----
2 files changed, 0 insertions(+), 7 deletions(-)
---
DIR diff --git a/iomenu.1 b/iomenu.1
@@ -72,9 +72,6 @@ Move selection to the previous/next item.
.It Ic ^M Ns , Ic ^J Ns , Ic Enter
Print the selection to the standard output, and exit 0.
.
-.It Ic ^Y
-Print the selection to the standard output but
-.Sy continue running .
.El
.
.Ss Input handling
DIR diff --git a/iomenu.c b/iomenu.c
@@ -394,10 +394,6 @@ input_key(void)
filter_lines();
break;
- case CONTROL('Y'):
- print_selection();
- break;
-
case CONTROL('J'): /* enter */
case CONTROL('M'):
print_selection();