File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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',
You can’t perform that action at this time.
0 commit comments