diff options
Diffstat (limited to 'core/ext')
-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 e42f6129..61becef8 100644 --- a/core/ext/pm/ctags_browser.lua +++ b/core/ext/pm/ctags_browser.lua @@ -111,7 +111,7 @@ function get_contents_for(full_path, expanding) tags = {} current_file = nil current_dir = '' -- ctags file will specify absolute paths - os.execute( 'ctags -o '..FILE_OUT..' '..(buffer.filename or '') ) + os.execute( 'ctags -f '..FILE_OUT..' '..(buffer.filename or '') ) f = io.open(FILE_OUT) if not f then return {} end elseif not expanding then |