Xinqi Bao's Git
projects
/
dmenu.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
4229fb7
)
added ^K, optimisations
author
Connor Lane Smith <
[email protected]
>
Sat, 19 Jun 2010 23:44:26 +0000
(
00:44
+0100)
committer
Connor Lane Smith <
[email protected]
>
Sat, 19 Jun 2010 23:44:26 +0000
(
00:44
+0100)
dmenu.c
patch
|
blob
|
history
diff --git
a/dmenu.c
b/dmenu.c
index
4a6ca3d
..
1d239c2
100644
(file)
--- a/
dmenu.c
+++ b/
dmenu.c
@@
-79,9
+79,9
@@
static char text[4096];
static int cmdw = 0;
static int promptw = 0;
static int ret = 0;
static int cmdw = 0;
static int promptw = 0;
static int ret = 0;
-static int cursor = 0;
static int screen;
static unsigned int mw, mh;
static int screen;
static unsigned int mw, mh;
+static unsigned int cursor = 0;
static unsigned int numlockmask = 0;
static Bool running = True;
static Display *dpy;
static unsigned int numlockmask = 0;
static Bool running = True;
static Display *dpy;
@@
-338,8
+338,8
@@
initfont(const char *fontstr) {
void
kpress(XKeyEvent * e) {
char buf[sizeof text];
void
kpress(XKeyEvent * e) {
char buf[sizeof text];
- int
i,
num;
- unsigned int len;
+ int num;
+ unsigned int
i,
len;
KeySym ksym;
len = strlen(text);
KeySym ksym;
len = strlen(text);
@@
-381,6
+381,10
@@
kpress(XKeyEvent * e) {
case XK_J:
ksym = XK_Return;
break;
case XK_J:
ksym = XK_Return;
break;
+ case XK_k:
+ case XK_K:
+ text[cursor] = '\0';
+ break;
case XK_u:
case XK_U:
memmove(text, text + cursor, sizeof text - cursor + 1);
case XK_u:
case XK_U:
memmove(text, text + cursor, sizeof text - cursor + 1);
@@
-450,12
+454,12
@@
kpress(XKeyEvent * e) {
}
break;
case XK_BackSpace:
}
break;
case XK_BackSpace:
- if(cursor
> 0) {
-
for(i = 1; cursor - i > 0 && !IS_UTF8_1ST_CHAR(text[cursor - i]); i++)
;
-
memmove(text + cursor - i, text + cursor, sizeof text - cursor + i
);
-
cursor -= i
;
-
match(text)
;
- }
+ if(cursor
== 0)
+
return
;
+
for(i = 1; cursor - i > 0 && !IS_UTF8_1ST_CHAR(text[cursor - i]); i++
);
+
memmove(text + cursor - i, text + cursor, sizeof text - cursor + i)
;
+
cursor -= i
;
+ match(text);
break;
case XK_Delete:
for(i = 1; cursor + i < len && !IS_UTF8_1ST_CHAR(text[cursor + i]); i++);
break;
case XK_Delete:
for(i = 1; cursor + i < len && !IS_UTF8_1ST_CHAR(text[cursor + i]); i++);
@@
-477,7
+481,7
@@
kpress(XKeyEvent * e) {
case XK_Escape:
ret = 1;
running = False;
case XK_Escape:
ret = 1;
running = False;
-
break
;
+
return
;
case XK_Home:
if(sel == item) {
cursor = 0;
case XK_Home:
if(sel == item) {
cursor = 0;
@@
-519,7
+523,7
@@
kpress(XKeyEvent * e) {
fprintf(stdout, "%s", sel->text);
fflush(stdout);
running = False;
fprintf(stdout, "%s", sel->text);
fflush(stdout);
running = False;
-
break
;
+
return
;
case XK_Right:
case XK_Down:
if(cursor < len)
case XK_Right:
case XK_Down:
if(cursor < len)