Skip to content

Commit a09692b

Browse files
committed
format
1 parent 77e092e commit a09692b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lua/dooku/config.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function M.set(opts)
2626

2727
-- detect default internet browser
2828
if is_windows then
29-
M.browser_cmd = opts.browser_cmd or "iexplore.exe"
29+
M.browser_cmd = opts.browser_cmd or "start"
3030
else
3131
M.browser_cmd = opts.browser_cmd or "xdg-open"
3232
end
@@ -83,8 +83,8 @@ function M.set(opts)
8383
-- Open on browser
8484
-- Defaults: cd 'docs',
8585
-- open './index.html' using the default interner browser.
86-
M.typedoc_docs_dir = opts.typedoc_htmldocs_dir or utils.os_path "docs"
87-
M.typedoc_html_file = opts.typedoc_html_file or utils.os_path "index.html"
86+
M.typedoc_docs_dir = opts.typedoc_htmldocs_dir or utils.os_path("docs")
87+
M.typedoc_html_file = opts.typedoc_html_file or utils.os_path("index.html")
8888

8989
-- Auto setup
9090
-- Defaults: clone the repo into 'vim-typedoc-template',
@@ -117,8 +117,8 @@ function M.set(opts)
117117
-- Open on browser
118118
-- Defaults: cd 'docs',
119119
-- open './index.html' using the default interner browser.
120-
M.jsdoc_docs_dir = opts.jsdoc_htmldocs_dir or utils.os_path "docs"
121-
M.jsdoc_html_file = opts.jsdoc_html_file or utils.os_path "index.html"
120+
M.jsdoc_docs_dir = opts.jsdoc_htmldocs_dir or utils.os_path("docs")
121+
M.jsdoc_html_file = opts.jsdoc_html_file or utils.os_path("index.html")
122122

123123
-- Auto setup
124124
-- Defaults: clone the repo into 'vim-jsdoc-template',

0 commit comments

Comments
 (0)