feat: add support for configuring code completions via settings

This commit is contained in:
Carl-Robert Linnupuu 2024-04-03 01:04:22 +03:00
parent 2b98b65210
commit f0172722c7
17 changed files with 198 additions and 139 deletions

View file

@ -161,8 +161,6 @@ public class ConfigurationComponent {
state.setCreateNewChatOnEachAction(openNewTabCheckBox.isSelected());
state.setMethodNameGenerationEnabled(methodNameGenerationCheckBox.isSelected());
state.setAutoFormattingEnabled(autoFormattingCheckBox.isSelected());
state.setCodeCompletionsEnabled(
ConfigurationSettings.getCurrentState().isCodeCompletionsEnabled());
return state;
}