From 24281bb68f889d526aa84443d4420927ffce6059 Mon Sep 17 00:00:00 2001
From: Daniel Carl <danielcarl@gmx.de>
Date: Fri, 21 Apr 2017 23:51:14 +0200
Subject: [PATCH] Create files needed for full feature support.

Create all those files on startup that are needed to provide all the
documented features.
---
 src/main.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main.c b/src/main.c
index 7a97f51..77cb4ec 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1430,15 +1430,15 @@ static void vimb_setup(void)
     }
 
     /* Setup those files that are use multiple time during runtime */
-    vb.files[FILES_CLOSED]     = util_get_filepath(path, "closed", FALSE);
-    vb.files[FILES_COOKIE]     = util_get_filepath(path, "cookies", FALSE);
+    vb.files[FILES_CLOSED]     = util_get_filepath(path, "closed", TRUE);
+    vb.files[FILES_COOKIE]     = util_get_filepath(path, "cookies", TRUE);
     vb.files[FILES_USER_STYLE] = util_get_filepath(path, "style.css", FALSE);
     vb.files[FILES_SCRIPT]     = util_get_filepath(path, "scripts.js", FALSE);
-    vb.files[FILES_HISTORY]    = util_get_filepath(path, "history", FALSE);
-    vb.files[FILES_COMMAND]    = util_get_filepath(path, "command", FALSE);
-    vb.files[FILES_BOOKMARK]   = util_get_filepath(path, "bookmark", FALSE);
-    vb.files[FILES_QUEUE]      = util_get_filepath(path, "queue", FALSE);
-    vb.files[FILES_SEARCH]     = util_get_filepath(path, "search", FALSE);
+    vb.files[FILES_HISTORY]    = util_get_filepath(path, "history", TRUE);
+    vb.files[FILES_COMMAND]    = util_get_filepath(path, "command", TRUE);
+    vb.files[FILES_BOOKMARK]   = util_get_filepath(path, "bookmark", TRUE);
+    vb.files[FILES_QUEUE]      = util_get_filepath(path, "queue", TRUE);
+    vb.files[FILES_SEARCH]     = util_get_filepath(path, "search", TRUE);
     g_free(path);
 
     /* Use seperate rendering processed for the webview of the clients in the
-- 
2.20.1