Skip to content

Releases: AnWeber/vscode-statusbar-command

v2.8.0

Choose a tag to compare

@AnWeber AnWeber released this 01 Sep 20:23
  • support definition of commands in external file (#29)

v2.7.0

Choose a tag to compare

@AnWeber AnWeber released this 10 May 05:02
a2e5a7a

support script array config setting

thx to @sr-tream

v2.6.1

Choose a tag to compare

@AnWeber AnWeber released this 24 Nov 20:12
  • fix broken visible change of include

v2.6.0

Choose a tag to compare

@AnWeber AnWeber released this 13 Nov 12:54
  • hide statusbar command with filter if no file is open
  • add support to show/hide statusbarbar depending on tasks

v2.5.0

Choose a tag to compare

@AnWeber AnWeber released this 02 Sep 18:36

v2.4.0

Choose a tag to compare

@AnWeber AnWeber released this 31 Aug 18:43
  • add new config option scriptFile

v2.3.1

Choose a tag to compare

@AnWeber AnWeber released this 25 Aug 20:10
  • fix issue with access to require in script (#21)

v2.3.0

Choose a tag to compare

@AnWeber AnWeber released this 24 Aug 19:53
  • allow require calls in script region (#21)

v2.2.1

Choose a tag to compare

@AnWeber AnWeber released this 03 Jan 11:28

Fix

  • fix regex patterns (include, exclude,...) not considered on startup (#19)

v2.2.0

Choose a tag to compare

@AnWeber AnWeber released this 15 Nov 16:30
  • add script and scriptEvents support

    • scriptsEvents is a list ov vscode events to which is subscribed to
    • script is a Javascript funtion which is executed for every subscribed event. The following properties can be accessed.
    name description
    vscode VSCode API
    statusBarItem current StatusBarItem
    • example:

      {
        "alignment": "left",
        "command": "github.copilot.toggleCopilot",
        "id": "sbc.copilot",
        "text": "Github Copilot",
        "scriptEvents": ["vscode.workspace.onDidChangeConfiguration"],
        "script": "statusBarItem.text = vscode.workspace.getConfiguration('github.copilot.inlineSuggest').enable ? '$(github)' : '$(github-inverted)'"
      }
      
    • feature only available in NodeJS Environment (not in vscode.dev or github.dev)