diff options
author | 2013-08-26 21:47:55 -0400 | |
---|---|---|
committer | 2013-08-26 21:47:55 -0400 | |
commit | acda712a50dbebafa295ccd07ce8186d9b82aa10 (patch) | |
tree | 0ab9229205aad0ac09bcdb0e9bc71c4f1bd87168 /modules/textadept/adeptsense.lua | |
parent | 8a6341ae8db36e1b6857f90c39865d254dcdc163 (diff) | |
download | textadept-acda712a50dbebafa295ccd07ce8186d9b82aa10.tar.gz textadept-acda712a50dbebafa295ccd07ce8186d9b82aa10.zip |
Renamed `gui` to `ui` since it's more applicable.
Diffstat (limited to 'modules/textadept/adeptsense.lua')
-rw-r--r-- | modules/textadept/adeptsense.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/adeptsense.lua b/modules/textadept/adeptsense.lua index 8a32f290..dd98c052 100644 --- a/modules/textadept/adeptsense.lua +++ b/modules/textadept/adeptsense.lua @@ -818,8 +818,8 @@ function M.goto_ctag(sense, kind, title) if kind == M.FUNCTION or kind == M.FIELD then table.insert(columns, 2, 'Class') end - local location = gui.filteredlist(title, columns, items, false, - '--output-column', '3') + local location = ui.filteredlist(title, columns, items, false, + '--output-column', '3') if not location then return end local path, line = location:match('^(%a?:?[^:]+):(.+)$') io.open_file(path) |