index.md - sites - public wiki contents of suckless.org
HTML git clone git://git.suckless.org/sites
DIR Log
DIR Files
DIR 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" will
9 match "foo", "foobar" and "fool", but not "world" or "barfoo".
10 * The Tab key will replace the current query with the longest common prefix of
11 all matches. E.g. completing "f" with matches "foobar" and "fool" will become
12 "foo".
13
14 The `-flag` variant adds a `use_prefix` setting and `-x` flag; useful if you
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.diff)
20 * For 4.7: [dmenu-prefixcompletion-4.7.diff](dmenu-prefixcompletion-4.7.diff)
21 * For 4.8: [dmenu-prefixcompletion-4.8.diff](dmenu-prefixcompletion-4.8.diff)
22 * For 4.9: [dmenu-prefixcompletion-4.8.diff](dmenu-prefixcompletion-4.9.diff)
23 * For 4.9, with `-x` flag: [dmenu-prefixcompletion-flag-4.9.diff](dmenu-prefixcompletion-flag-4.9.diff)
24
25 Authors
26 -------
27
28 * ninewise
29 * Martin Tournoij – `-flag` patch.