55 lines
2.3 KiB
Rust
Raw Normal View History

2018-08-10 21:13:39 +03:00
use languageserver_types::{
2019-01-11 15:16:55 -05:00
CodeActionProviderCapability, CodeLensOptions, CompletionOptions, DocumentOnTypeFormattingOptions,
2018-10-31 23:41:43 +03:00
ExecuteCommandOptions, FoldingRangeProviderCapability, RenameOptions, RenameProviderCapability,
ServerCapabilities, SignatureHelpOptions, TextDocumentSyncCapability, TextDocumentSyncKind,
TextDocumentSyncOptions,
2018-08-10 21:13:39 +03:00
};
2018-08-10 15:07:43 +03:00
2018-08-13 02:38:34 +03:00
pub fn server_capabilities() -> ServerCapabilities {
ServerCapabilities {
text_document_sync: Some(TextDocumentSyncCapability::Options(
TextDocumentSyncOptions {
open_close: Some(true),
change: Some(TextDocumentSyncKind::Full),
will_save: None,
will_save_wait_until: None,
save: None,
},
2018-08-13 02:38:34 +03:00
)),
2018-11-05 16:37:27 -05:00
hover_provider: Some(true),
2018-08-26 12:51:45 +03:00
completion_provider: Some(CompletionOptions {
resolve_provider: None,
2018-12-25 15:20:37 +01:00
trigger_characters: Some(vec![":".to_string(), ".".to_string()]),
2018-08-26 12:51:45 +03:00
}),
signature_help_provider: Some(SignatureHelpOptions {
trigger_characters: Some(vec!["(".to_string(), ",".to_string(), ")".to_string()]),
}),
2018-08-13 16:35:17 +03:00
definition_provider: Some(true),
2018-08-13 02:38:34 +03:00
type_definition_provider: None,
implementation_provider: None,
references_provider: Some(true),
2018-12-31 11:08:44 +00:00
document_highlight_provider: Some(true),
2018-08-13 02:38:34 +03:00
document_symbol_provider: Some(true),
2018-08-13 15:35:53 +03:00
workspace_symbol_provider: Some(true),
2018-09-23 11:10:57 -04:00
code_action_provider: Some(CodeActionProviderCapability::Simple(true)),
2019-01-11 15:16:55 -05:00
code_lens_provider: Some(CodeLensOptions {
resolve_provider: None,
}),
document_formatting_provider: Some(true),
2018-08-13 02:38:34 +03:00
document_range_formatting_provider: None,
2018-08-28 11:12:42 +03:00
document_on_type_formatting_provider: Some(DocumentOnTypeFormattingOptions {
first_trigger_character: "=".to_string(),
more_trigger_character: Some(vec![".".to_string()]),
2018-08-28 11:12:42 +03:00
}),
2018-09-23 11:10:57 -04:00
folding_range_provider: Some(FoldingRangeProviderCapability::Simple(true)),
2018-10-31 23:41:43 +03:00
rename_provider: Some(RenameProviderCapability::Options(RenameOptions {
prepare_provider: Some(true),
2018-10-18 17:56:22 -04:00
})),
2018-08-13 02:38:34 +03:00
color_provider: None,
execute_command_provider: Some(ExecuteCommandOptions {
commands: vec!["apply_code_action".to_string()],
}),
2018-09-23 11:10:57 -04:00
workspace: None,
2018-08-13 02:38:34 +03:00
}
}