@@ -1261,7 +1261,7 @@ impl Config {
1261
1261
impl Config {
1262
1262
pub fn assist ( & self , source_root : Option < SourceRootId > ) -> AssistConfig {
1263
1263
AssistConfig {
1264
- snippet_cap : SnippetCap :: new ( self . experimental ( "snippetTextEdit" ) ) ,
1264
+ snippet_cap : self . snippet_cap ( ) ,
1265
1265
allowed : None ,
1266
1266
insert_use : self . insert_use_config ( source_root) ,
1267
1267
prefer_no_std : self . imports_preferNoStd ( source_root) . to_owned ( ) ,
@@ -1321,6 +1321,7 @@ impl Config {
1321
1321
ExprFillDefaultDef :: Todo => ExprFillDefaultMode :: Todo ,
1322
1322
ExprFillDefaultDef :: Default => ExprFillDefaultMode :: Default ,
1323
1323
} ,
1324
+ snippet_cap : self . snippet_cap ( ) ,
1324
1325
insert_use : self . insert_use_config ( source_root) ,
1325
1326
prefer_no_std : self . imports_preferNoStd ( source_root) . to_owned ( ) ,
1326
1327
prefer_prelude : self . imports_preferPrelude ( source_root) . to_owned ( ) ,
@@ -2007,8 +2008,10 @@ impl Config {
2007
2008
* self . references_excludeTests ( )
2008
2009
}
2009
2010
2010
- pub fn snippet_cap ( & self ) -> bool {
2011
- self . experimental ( "snippetTextEdit" )
2011
+ pub fn snippet_cap ( & self ) -> Option < SnippetCap > {
2012
+ // FIXME: Also detect the proposed lsp version at caps.workspace.workspaceEdit.snippetEditSupport
2013
+ // once lsp-types has it.
2014
+ SnippetCap :: new ( self . experimental ( "snippetTextEdit" ) )
2012
2015
}
2013
2016
2014
2017
pub fn call_info ( & self ) -> CallInfoConfig {
0 commit comments