From 0e05c4644e945e8ab0180c9b5f7c0b6f67699260 Mon Sep 17 00:00:00 2001 From: Nikhil Verma Date: Thu, 18 Sep 2025 23:10:44 -0400 Subject: [PATCH 1/3] fix: update yaml field for ignoring mouse events --- pkg/config/app_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go index 9c0ad474..0732d26a 100644 --- a/pkg/config/app_config.go +++ b/pkg/config/app_config.go @@ -90,7 +90,7 @@ type GuiConfig struct { // IgnoreMouseEvents is for when you do not want to use your mouse to interact // with anything - IgnoreMouseEvents bool `yaml:"mouseEvents,omitempty"` + IgnoreMouseEvents bool `yaml:"ignoreMouseEvents,omitempty"` // Theme determines what colors and color attributes your panel borders have. // I always set inactiveBorderColor to black because in my terminal it's more From aa631777f64845a723305643a67997fcb81bb69b Mon Sep 17 00:00:00 2001 From: Nikhil Verma Date: Thu, 9 Oct 2025 01:49:39 -0400 Subject: [PATCH 2/3] Fix typo in ViewAllLogs field tag --- pkg/config/app_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go index 0732d26a..1bd89afb 100644 --- a/pkg/config/app_config.go +++ b/pkg/config/app_config.go @@ -205,7 +205,7 @@ type CommandTemplatesConfig struct { AllLogs string `yaml:"allLogs,omitempty"` // ViewAllLogs is the command we use when you want to see all logs in a subprocess with no filtering - ViewAllLogs string `yaml:"viewAlLogs,omitempty"` + ViewAllLogs string `yaml:"viewAllLogs,omitempty"` // DockerComposeConfig is the command for viewing the config of your docker // compose. It basically prints out the yaml from your docker-compose.yml From 9dc2c053cb2c57166037e4c4932fe323cc9a684e Mon Sep 17 00:00:00 2001 From: Nikhil Verma Date: Thu, 9 Oct 2025 01:51:28 -0400 Subject: [PATCH 3/3] Fix typo in viewAllLogs command --- docs/Config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Config.md b/docs/Config.md index d386ff31..e8c32889 100644 --- a/docs/Config.md +++ b/docs/Config.md @@ -78,7 +78,7 @@ commandTemplates: rebuildService: '{{ .DockerCompose }} up -d --build {{ .Service.Name }}' recreateService: '{{ .DockerCompose }} up -d --force-recreate {{ .Service.Name }}' allLogs: '{{ .DockerCompose }} logs --tail=300 --follow' - viewAlLogs: '{{ .DockerCompose }} logs' + viewAllLogs: '{{ .DockerCompose }} logs' dockerComposeConfig: '{{ .DockerCompose }} config' checkDockerComposeConfig: '{{ .DockerCompose }} config --quiet' serviceTop: '{{ .DockerCompose }} top {{ .Service.Name }}'