We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dade26f + e88f796 commit 97fe199Copy full SHA for 97fe199
lua/markmap/config.lua
@@ -11,12 +11,12 @@ M.set = function(opts)
11
-- Setup options
12
M.html_output = opts.html_output or nil
13
M.hide_toolbar = opts.hide_toolbar or false
14
- M.grace_period = opts.grace_period or 3600000 -- 60min
+ M.grace_period = opts.grace_period or 3600000 -- 60min
15
16
-- Set defaults: M.html_output
17
if M.html_output == nil then
18
if is_windows then
19
- M.html_output = uv.os_getenv("TEMP" .. "\\" .. "markmap.html")
+ M.html_output = uv.os_getenv("TEMP") .. "\\" .. "markmap.html"
20
elseif is_android then
21
M.html_output = "/data/data/com.termux/files/usr/tmp/markmap.html"
22
else -- unix
0 commit comments