fix(completion): quoted cell path completion (#15546)

Closes #15525 

# Description

# User-Facing Changes

bug fix

# Tests + Formatting

+1

# After Submitting
This commit is contained in:
zc he
2025-04-16 13:26:45 +08:00
committed by GitHub
parent 8f81812ef9
commit 24cc2f9d87
3 changed files with 58 additions and 17 deletions

View File

@ -481,10 +481,10 @@ mod tests {
actual: result_from_message(resp),
expected: serde_json::json!([
{
"label": "1",
"label": "\"1\"",
"detail": "string",
"textEdit": {
"newText": "1",
"newText": "\"1\"",
"range": { "start": { "line": 1, "character": 5 }, "end": { "line": 1, "character": 5 } }
},
"kind": 10