Unnamed repository; edit this file 'description' to name the repository.
Revert "onenter"
This reverts commit ecb6f7b5d495d7475938738049d417648d74c4d5.
bendn 3 days ago
parent 577e0f1 · commit de29e45
-rw-r--r--helix-lsp-types/src/request.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/helix-lsp-types/src/request.rs b/helix-lsp-types/src/request.rs
index e7493862..7502546b 100644
--- a/helix-lsp-types/src/request.rs
+++ b/helix-lsp-types/src/request.rs
@@ -207,9 +207,6 @@ macro_rules! lsp_request {
("window/showDocument") => {
$crate::request::ShowDocument
};
- ("experimental/onEnter") => {
- $crate::request::OnEnter
- };
}
/// The initialize request is sent as the first request from the client to the server.
@@ -971,15 +968,6 @@ impl Request for TypeHierarchySubtypes {
const METHOD: &'static str = "typeHierarchy/subtypes";
}
-#[derive(Debug)]
-pub enum OnEnter {}
-
-impl Request for OnEnter {
- type Params = TextDocumentPositionParams;
- type Result = Option<Vec<SnippetTextEdit>>;
- const METHOD: &'static str = "experimental/onEnter";
-}
-
#[cfg(test)]
mod test {
use super::*;