Add IntelliSense with documentation panel to code editor

This commit is contained in:
Ryan Ward
2026-05-28 16:00:45 -05:00
parent 6792039df4
commit 5a79ed0aa7
5 changed files with 401 additions and 23 deletions
+8
View File
@@ -9,6 +9,8 @@ use galaxy_core::{
};
fn main() -> Result<()> {
use galaxy_core::features::FeatureFlag;
let mut state = ChannelState::new(
Channel::Oss,
ChannelConfig {
@@ -25,6 +27,12 @@ fn main() -> Result<()> {
if cfg!(debug_assertions) {
state = state.with_additional_features(galaxy_core::features::DEBUG_FLAGS);
}
state = state.with_additional_features(&[
FeatureFlag::LspCompletion,
FeatureFlag::LspCodeActions,
FeatureFlag::LspRename,
FeatureFlag::LspSignatureHelp,
]);
ChannelState::set(state);
galaxy::run()