Xinqi Bao's Git
projects
/
dmenu.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
be9afce
)
instant ^E
author
Connor Lane Smith <
[email protected]
>
Sat, 14 May 2011 17:39:27 +0000
(18:39 +0100)
committer
Connor Lane Smith <
[email protected]
>
Sat, 14 May 2011 17:39:27 +0000
(18:39 +0100)
dmenu.c
patch
|
blob
|
history
diff --git
a/dmenu.c
b/dmenu.c
index
68fc9ff
..
b6f1ef2
100644
(file)
--- a/
dmenu.c
+++ b/
dmenu.c
@@
-55,8
+55,8
@@
static Atom utf8;
static Bool topbar = True;
static DC *dc;
static Item *items = NULL;
static Bool topbar = True;
static DC *dc;
static Item *items = NULL;
-static Item *matches, *
sel
;
-static Item *prev, *curr, *next;
+static Item *matches, *
matchend
;
+static Item *prev, *curr, *next
, *sel
;
static Window root, win;
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
static Window root, win;
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
@@
-308,12
+308,15
@@
keypress(XKeyEvent *ev) {
cursor = len;
break;
}
cursor = len;
break;
}
-
while
(next) {
-
sel = curr = next
;
+
if
(next) {
+
curr = matchend
;
calcoffsets();
calcoffsets();
+ curr = prev;
+ calcoffsets();
+ while(next && (curr = curr->right))
+ calcoffsets();
}
}
- while(sel && sel->right)
- sel = sel->right;
+ sel = matchend;
break;
case XK_Escape:
exit(EXIT_FAILURE);
break;
case XK_Escape:
exit(EXIT_FAILURE);
@@
-381,10
+384,10
@@
keypress(XKeyEvent *ev) {
void
match(void) {
size_t len;
void
match(void) {
size_t len;
- Item *item, *
itemend, *
lexact, *lprefix, *lsubstr, *exactend, *prefixend, *substrend;
+ Item *item, *lexact, *lprefix, *lsubstr, *exactend, *prefixend, *substrend;
len = strlen(text);
len = strlen(text);
- matches = lexact = lprefix = lsubstr =
item
end = exactend = prefixend = substrend = NULL;
+ matches = lexact = lprefix = lsubstr =
match
end = exactend = prefixend = substrend = NULL;
for(item = items; item && item->text; item++)
if(!fstrncmp(text, item->text, len + 1))
appenditem(item, &lexact, &exactend);
for(item = items; item && item->text; item++)
if(!fstrncmp(text, item->text, len + 1))
appenditem(item, &lexact, &exactend);
@@
-395,24
+398,25
@@
match(void) {
if(lexact) {
matches = lexact;
if(lexact) {
matches = lexact;
-
item
end = exactend;
+
match
end = exactend;
}
if(lprefix) {
}
if(lprefix) {
- if(
item
end) {
-
item
end->right = lprefix;
- lprefix->left =
item
end;
+ if(
match
end) {
+
match
end->right = lprefix;
+ lprefix->left =
match
end;
}
else
matches = lprefix;
}
else
matches = lprefix;
-
item
end = prefixend;
+
match
end = prefixend;
}
if(lsubstr) {
}
if(lsubstr) {
- if(
item
end) {
-
item
end->right = lsubstr;
- lsubstr->left =
item
end;
+ if(
match
end) {
+
match
end->right = lsubstr;
+ lsubstr->left =
match
end;
}
else
matches = lsubstr;
}
else
matches = lsubstr;
+ matchend = substrend;
}
curr = sel = matches;
calcoffsets();
}
curr = sel = matches;
calcoffsets();