diff options
-rw-r--r-- | core/ext/pm/ctags_browser.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/pm/ctags_browser.lua b/core/ext/pm/ctags_browser.lua index 503804c2..23556f68 100644 --- a/core/ext/pm/ctags_browser.lua +++ b/core/ext/pm/ctags_browser.lua @@ -116,7 +116,7 @@ function get_contents_for(full_path, expanding) tags = {} current_file = nil current_dir = '' -- ctags file will specify absolute paths - os.execute('ctags -f '..FILE_OUT..' '..(buffer.filename or '')) + os.execute('ctags -f "'..FILE_OUT..'" '..(buffer.filename or '')) f = io.open(FILE_OUT, 'rb') if not f then return {} end elseif not expanding then |