Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-core/src/syntax/config.rs')
| -rw-r--r-- | helix-core/src/syntax/config.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-core/src/syntax/config.rs b/helix-core/src/syntax/config.rs index 1288bc98..ad1ddaf0 100644 --- a/helix-core/src/syntax/config.rs +++ b/helix-core/src/syntax/config.rs @@ -319,6 +319,7 @@ pub enum LanguageServerFeature { RenameSymbol, InlayHints, DocumentColors, + CallHierarchy, } impl Display for LanguageServerFeature { @@ -344,6 +345,7 @@ impl Display for LanguageServerFeature { RenameSymbol => "rename-symbol", InlayHints => "inlay-hints", DocumentColors => "document-colors", + CallHierarchy => "call-hierarchy", }; write!(f, "{feature}",) } |