feat(intellij): add loading status in intellij plugin when fetching completions for automatic trigger mode.
* Add additional information in modal installation docs * docs: update tabby version to 0.5.5 update Modal installation script * feat: add loading status for intelliJ plugin Add loading status when sending completion request to copilot server * feat: optimize loading logicextract-routes
parent
e3518b46a5
commit
8a4ceba411
|
|
@ -119,8 +119,13 @@ class StatusBarWidgetFactory : StatusBarEditorBasedWidgetFactory() {
|
|||
} else {
|
||||
when (state.settings.completionTriggerMode) {
|
||||
ApplicationSettingsState.TriggerMode.AUTOMATIC -> {
|
||||
icon = AllIcons.Actions.Checked
|
||||
tooltip = "Tabby: Automatic code completion is enabled"
|
||||
if (state.ongoingCompletion == null) {
|
||||
icon = AllIcons.Actions.Checked
|
||||
tooltip = "Tabby: Automatic code completion is enabled"
|
||||
} else {
|
||||
icon = AnimatedIcon.Default()
|
||||
tooltip = "Tabby: Generating code completions"
|
||||
}
|
||||
}
|
||||
|
||||
ApplicationSettingsState.TriggerMode.MANUAL -> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue