turbot / steampipe

Zero-ETL, infinite possibilities. Live query APIs, code & more with SQL. No DB required.
https://steampipe.io
GNU Affero General Public License v3.0
6.67k stars 262 forks source link

setting autocomplete in workspaces files has no effect #4291

Open johnsmyth opened 1 month ago

johnsmyth commented 1 month ago

Describe the bug

Disabling autocomplete in workspaces files has no effect.

Steampipe version (steampipe -v) Steampipe v0.23.2

To reproduce turn of autocomplete in workspaces.spc:

workspace "default" {
  options "query" {
    autocomplete = "off"
  }
}

run steampipe query. Note that autocomplete is still on.

Expected behavior autocomplete should be disabled, per the workspace setting

Additional context Add any other context about the problem here.

Mr-Destructive commented 1 week ago

I think this is working fine, not able to replicate the issue with autocomplete = false

workspace "default" {
  options "query" {
    autocomplete = false
  }
}

This works and disables the auto-complete according to the workspace setting. Workspace Documentation Thanks.