Skip to content

Releases: AnWeber/vscode-statusbar-command

v2.8.0

01 Sep 20:23
Compare
Choose a tag to compare
  • support definition of commands in external file (#29)

v2.7.0

10 May 05:02
a2e5a7a
Compare
Choose a tag to compare

support script array config setting

thx to @sr-tream

v2.6.1

24 Nov 20:12
Compare
Choose a tag to compare
  • fix broken visible change of include

v2.6.0

13 Nov 12:54
Compare
Choose a tag to compare
  • hide statusbar command with filter if no file is open
  • add support to show/hide statusbarbar depending on tasks

v2.5.0

02 Sep 18:36
Compare
Choose a tag to compare

v2.4.0

31 Aug 18:43
Compare
Choose a tag to compare
  • add new config option scriptFile

v2.3.1

25 Aug 20:10
Compare
Choose a tag to compare
  • fix issue with access to require in script (#21)

v2.3.0

24 Aug 19:53
Compare
Choose a tag to compare
  • allow require calls in script region (#21)

v2.2.1

03 Jan 11:28
Compare
Choose a tag to compare

Fix

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

v2.2.0

15 Nov 16:30
Compare
Choose a tag to compare
  • 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)