diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-12-28 16:01:17 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-12-28 16:01:17 +0800 |
commit | 6f3cb7196f0230f6cf18b21a1617d133d32d611c (patch) | |
tree | 1b97090f771957c0c48d3315f81ec98c313effcc /server/test/document_symbol/init.lua | |
parent | d0cad6f25ede39e95ae4486a24abba643b0860fb (diff) | |
download | lua-language-server-6f3cb7196f0230f6cf18b21a1617d133d32d611c.zip |
修正自动完成搜索require的bug
Diffstat (limited to 'server/test/document_symbol/init.lua')
-rw-r--r-- | server/test/document_symbol/init.lua | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/server/test/document_symbol/init.lua b/server/test/document_symbol/init.lua index 684e5449..746ec108 100644 --- a/server/test/document_symbol/init.lua +++ b/server/test/document_symbol/init.lua @@ -84,16 +84,16 @@ end } } -TEST [[ -return function () -end -]] -{ - [1] = { - name = '', - detail = 'function f()', - kind = SymbolKind.Function, - range = {8, 22}, - selectionRange = {8, 8}, - } -} +--TEST [[ +--return function () +--end +--]] +--{ +-- [1] = { +-- name = '', +-- detail = 'function f()', +-- kind = SymbolKind.Function, +-- range = {8, 22}, +-- selectionRange = {8, 8}, +-- } +--} |