tremoved C-[ from source and man page - dmenu - Dmenu fork with xft fonts.
(HTM) git clone git://r-36.net/dmenu
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit e4fbc432534bfb42a0b0d97bcdd687274780e95e
(DIR) parent 66f2a93eaa25255daac4316bbaf5f41098a7fd45
(HTM) Author: Anselm R.Garbe <arg@10ksloc.org>
Date: Thu, 10 Aug 2006 10:09:44 +0200
removed C-[ from source and man page
Diffstat:
dmenu.1 | 2 +-
main.c | 4 ----
2 files changed, 1 insertion(+), 5 deletions(-)
---
(DIR) diff --git a/dmenu.1 b/dmenu.1
t@@ -41,7 +41,7 @@ Confirm selection and quit (print the selected item to stdout).
Shift-Return
Confirm selection and quit (print the text in the input field to stdout).
.TP
-Escape (Control-[)
+Escape
Quit without selecting an item.
.TP
Backspace (Control-h)
(DIR) diff --git a/main.c b/main.c
t@@ -174,16 +174,12 @@ kpress(XKeyEvent * e)
case XK_h:
ksym = XK_BackSpace;
break;
- case XK_U:
case XK_u:
text[0] = 0;
match(text);
drawmenu();
return;
break;
- case XK_bracketleft:
- ksym = XK_Escape;
- break;
}
}
switch(ksym) {