editor: add debug session config

This commit is contained in:
Dmitry Sharshakov 2021-08-23 16:56:41 +03:00
parent c5b210df59
commit f55a012fb7
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
3 changed files with 35 additions and 3 deletions

View file

@ -58,6 +58,8 @@ pub struct LanguageConfiguration {
pub(crate) indent_query: OnceCell<Option<IndentQuery>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub debug_adapter: Option<DebugAdapterConfig>,
#[serde(skip_serializing_if = "Option::is_none")]
pub debug_configs: Option<Vec<HashMap<String, serde_json::Value>>>,
}
#[derive(Debug, Serialize, Deserialize)]