summaryrefslogtreecommitdiffstats
path: root/config/config.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2014-07-16 08:42:42 +0200
committerDave Davenport <qball@gmpclient.org>2014-07-16 08:42:42 +0200
commitc86f28493abef40b129756d1e05f9e8638c7adbb (patch)
tree9511d42109f048ebf2a1dc8d844d65314e9b0d00 /config/config.c
parentdaa0d16221323c7a846816ca094576829d8e2ac7 (diff)
Make levenshtein sorting its own option.
* TODO: update manpage. (no md2man on this machine)
Diffstat (limited to 'config/config.c')
-rw-r--r--config/config.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/config/config.c b/config/config.c
index 78956116..6523e97c 100644
--- a/config/config.c
+++ b/config/config.c
@@ -62,19 +62,20 @@ Settings config = {
.i3_mode = 0,
#endif
// Key binding
- .window_key = "F12",
- .run_key = "mod1+F2",
- .ssh_key = "mod1+F3",
+ .window_key = "F12",
+ .run_key = "mod1+F2",
+ .ssh_key = "mod1+F3",
// Location of the window. WL_CENTER, WL_NORTH_WEST, WL_NORTH,WL_NORTH_EAST, etc.
.location = WL_CENTER,
// Mode of window, list (Vertical) or dmenu like (Horizontal)
.hmode = FALSE,
// Padding of the window.
- .padding = 5,
- .ssh_set_title = TRUE,
- .y_offset = 0,
- .x_offset = 0,
- .fixed_num_lines = FALSE,
- .disable_history = FALSE
+ .padding = 5,
+ .ssh_set_title = TRUE,
+ .y_offset = 0,
+ .x_offset = 0,
+ .fixed_num_lines = FALSE,
+ .disable_history = FALSE,
+ .levenshtein_sort = FALSE
};