mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
#3312 - Just check if additionalTextEdits is non-empty
This commit is contained in:
@@ -537,7 +537,6 @@ Execute(Should handle completion messages with the deprecated insertText attribu
|
||||
|
||||
Execute(Should handle completion messages with additionalTextEdits when ale_completion_autoimport is turned on):
|
||||
let g:ale_completion_autoimport = 1
|
||||
let b:ale_completion_info = {'line': 30}
|
||||
|
||||
AssertEqual
|
||||
\ [
|
||||
@@ -592,19 +591,6 @@ Execute(Should handle completion messages with additionalTextEdits when ale_comp
|
||||
\ {
|
||||
\ 'range': {
|
||||
\ 'start': {
|
||||
\ 'line': 29,
|
||||
\ 'character': 10,
|
||||
\ },
|
||||
\ 'end': {
|
||||
\ 'line': 29,
|
||||
\ 'character': 10,
|
||||
\ },
|
||||
\ },
|
||||
\ 'newText': 'next_callback',
|
||||
\ },
|
||||
\ {
|
||||
\ 'range': {
|
||||
\ 'start': {
|
||||
\ 'line': 10,
|
||||
\ 'character': 1,
|
||||
\ },
|
||||
@@ -645,19 +631,6 @@ Execute(Should not handle completion messages with additionalTextEdits when ale_
|
||||
\ {
|
||||
\ 'range': {
|
||||
\ 'start': {
|
||||
\ 'line': 29,
|
||||
\ 'character': 10,
|
||||
\ },
|
||||
\ 'end': {
|
||||
\ 'line': 29,
|
||||
\ 'character': 10,
|
||||
\ },
|
||||
\ },
|
||||
\ 'newText': 'next_callback',
|
||||
\ },
|
||||
\ {
|
||||
\ 'range': {
|
||||
\ 'start': {
|
||||
\ 'line': 10,
|
||||
\ 'character': 1,
|
||||
\ },
|
||||
@@ -674,9 +647,8 @@ Execute(Should not handle completion messages with additionalTextEdits when ale_
|
||||
\ },
|
||||
\ })
|
||||
|
||||
Execute(Should still handle completion messages with additionalTextEdits with ale_completion_autoimport turned off, if edits all start on the line):
|
||||
Execute(Should still handle completion messages with empty additionalTextEdits with ale_completion_autoimport turned off):
|
||||
let g:ale_completion_autoimport = 0
|
||||
let b:ale_completion_info = {'line': 30}
|
||||
|
||||
AssertEqual
|
||||
\ [
|
||||
@@ -702,21 +674,7 @@ Execute(Should still handle completion messages with additionalTextEdits with al
|
||||
\ 'kind': 6,
|
||||
\ 'label': ' next_callback',
|
||||
\ 'sortText': '3ee19999next_callback',
|
||||
\ 'additionalTextEdits': [
|
||||
\ {
|
||||
\ 'range': {
|
||||
\ 'start': {
|
||||
\ 'line': 29,
|
||||
\ 'character': 10,
|
||||
\ },
|
||||
\ 'end': {
|
||||
\ 'line': 29,
|
||||
\ 'character': 10,
|
||||
\ },
|
||||
\ },
|
||||
\ 'newText': 'next_callback',
|
||||
\ },
|
||||
\ ],
|
||||
\ 'additionalTextEdits': [],
|
||||
\ },
|
||||
\ ],
|
||||
\ },
|
||||
|
||||
Reference in New Issue
Block a user