index.md - sites - public wiki contents of suckless.org | |
git clone git://git.suckless.org/sites | |
Log | |
Files | |
Refs | |
--- | |
index.md (1067B) | |
--- | |
1 prefix completion | |
2 ================= | |
3 | |
4 Description | |
5 ----------- | |
6 Changes the behaviour of the matched items and the Tab key. | |
7 | |
8 * Only items prefixed by the written text will match. E.g. query "foo" w… | |
9 match "foo", "foobar" and "fool", but not "world" or "barfoo". | |
10 * The Tab key will replace the current query with the longest common pre… | |
11 all matches. E.g. completing "f" with matches "foobar" and "fool" will… | |
12 "foo". | |
13 | |
14 The `-flag` variant adds a `use_prefix` setting and `-x` flag; useful if… | |
15 only want some instances of dmenu to do prefix matching. | |
16 | |
17 Download | |
18 -------- | |
19 * For 4.6: [dmenu-prefixcompletion-4.6.diff](dmenu-prefixcompletion-4.6.… | |
20 * For 4.7: [dmenu-prefixcompletion-4.7.diff](dmenu-prefixcompletion-4.7.… | |
21 * For 4.8: [dmenu-prefixcompletion-4.8.diff](dmenu-prefixcompletion-4.8.… | |
22 * For 4.9: [dmenu-prefixcompletion-4.8.diff](dmenu-prefixcompletion-4.9.… | |
23 * For 4.9, with `-x` flag: [dmenu-prefixcompletion-flag-4.9.diff](dmenu-… | |
24 | |
25 Authors | |
26 ------- | |
27 | |
28 * ninewise | |
29 * Martin Tournoij – `-flag` patch. |