From: Daniel Carl Date: Sun, 9 Apr 2017 21:57:34 +0000 (+0200) Subject: Fixed wrong default download path. X-Git-Url: https://git.owens.tech/editable-focus.html/editable-focus.html/git?a=commitdiff_plain;h=768b5fdb4d2f3dd506fe286e90769e225cae9a2c;p=vimb.git Fixed wrong default download path. --- diff --git a/src/setting.c b/src/setting.c index 9c5741f..6e1fcde 100644 --- a/src/setting.c +++ b/src/setting.c @@ -139,7 +139,7 @@ void setting_init(Client *c) setting_add(c, "fullscreen", TYPE_BOOLEAN, &off, fullscreen, 0, NULL); i = 100; setting_add(c, "default-zoom", TYPE_INTEGER, &i, default_zoom, 0, NULL); - setting_add(c, "download-path", TYPE_CHAR, &"~", NULL, 0, NULL); + setting_add(c, "download-path", TYPE_CHAR, &"~/", NULL, 0, NULL); setting_add(c, "incsearch", TYPE_BOOLEAN, &off, internal, 0, &c->config.incsearch); #ifdef FEATURE_GUI_STYLE_VIMB2_COMPAT