diff options
-rw-r--r-- | modules/textadept/adeptsense.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/adeptsense.lua b/modules/textadept/adeptsense.lua index 3c360167..8a8775e7 100644 --- a/modules/textadept/adeptsense.lua +++ b/modules/textadept/adeptsense.lua @@ -316,7 +316,7 @@ function goto_ctag(sense, k, title) local location = gui.filteredlist(title, columns, items, false, '--output-column', '3') if not location then return end - local path, line = location:match('^([^:]+):(.+)$') + local path, line = location:match('^(%a?:?[^:]+):(.+)$') io.open_file(path) if not tonumber(line) then -- /^ ... $/ |