You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/src/features/completion.rs
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@ use std::collections::{HashMap, HashSet};
3
3
use std::{cell::RefCell, rc::Rc};
4
4
use itertools::Itertools;
5
5
use lsp_types::{CompletionItem,CompletionItemKind,CompletionItemLabelDetails,CompletionList,CompletionResponse,MarkupContent};
6
-
use ruff_python_ast::{Decorator,ExceptHandler,Expr,ExprAttribute,ExprIf,ExprName,ExprSubscript,ExprYield,Stmt,StmtGlobal,StmtImport,StmtImportFrom,StmtNonlocal};
6
+
use ruff_python_ast::{Decorator,ExceptHandler,Expr,ExprAttribute,ExprIf,ExprName,ExprSlice,ExprSubscript,ExprYield,Stmt,StmtGlobal,StmtImport,StmtImportFrom,StmtNonlocal};
0 commit comments