projects
/
suckless
/
dmenu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
66f2a93
)
removed C-[ from source and man page
author
Anselm R.Garbe
<arg@10ksloc.org>
Thu, 10 Aug 2006 08:09:44 +0000
(10:09 +0200)
committer
Anselm R.Garbe
<arg@10ksloc.org>
Thu, 10 Aug 2006 08:09:44 +0000
(10:09 +0200)
dmenu.1
patch
|
blob
|
history
main.c
patch
|
blob
|
history
diff --git
a/dmenu.1
b/dmenu.1
index db919db65b68ce0f4ebd5dfa8ba71483319f51bb..926b559bbb926aa994b1fc9270df98c87fc7cd3a 100644
(file)
--- a/
dmenu.1
+++ b/
dmenu.1
@@
-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)
diff --git
a/main.c
b/main.c
index 561f88f08d14174694b3e7947fdd953047b6785e..3458fd50014d0d54a8d649bda051a7238079d9ff 100644
(file)
--- a/
main.c
+++ b/
main.c
@@
-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) {