Skip to content

Commit

Permalink
1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Jan 4, 2019
1 parent 3ad8902 commit cb54b86
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

86 changes: 72 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "brightscript",
"displayName": "BrightScript Language",
"version": "1.4.2",
"version": "1.5.0",
"publisher": "celsoaf",
"description": "Language support for Roku's BrightScript language.",
"author": {
Expand Down Expand Up @@ -398,19 +398,77 @@
}
],
"keybindings": [
{ "key": "Backspace", "command": "extension.brightscript.pressBackButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "win+Backspace", "mac": "cmd+Backspace", "command": "extension.brightscript.pressBackspaceButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "Escape", "command": "extension.brightscript.pressHomeButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "up", "command": "extension.brightscript.pressUpButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "down", "command": "extension.brightscript.pressDownButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "right", "command": "extension.brightscript.pressRightButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "left", "command": "extension.brightscript.pressLeftButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "Enter", "command": "extension.brightscript.pressSelectButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "win+Enter", "mac": "cmd+Enter", "command": "extension.brightscript.pressPlayButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "win+left", "mac": "cmd+left", "command": "extension.brightscript.pressRevButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "win+right", "mac": "cmd+right", "command": "extension.brightscript.pressFwdButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "win+8", "mac": "cmd+8", "command": "extension.brightscript.pressStarButton", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"},
{ "key": "win+k", "mac": "cmd+k", "command": "extension.brightscript.sendRemoteText", "when": "panelFocus && !inDebugRepl && !findWidgetVisible"}
{
"key": "Backspace",
"command": "extension.brightscript.pressBackButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "win+Backspace",
"mac": "cmd+Backspace",
"command": "extension.brightscript.pressBackspaceButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "Escape",
"command": "extension.brightscript.pressHomeButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "up",
"command": "extension.brightscript.pressUpButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "down",
"command": "extension.brightscript.pressDownButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "right",
"command": "extension.brightscript.pressRightButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "left",
"command": "extension.brightscript.pressLeftButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "Enter",
"command": "extension.brightscript.pressSelectButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "win+Enter",
"mac": "cmd+Enter",
"command": "extension.brightscript.pressPlayButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "win+left",
"mac": "cmd+left",
"command": "extension.brightscript.pressRevButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "win+right",
"mac": "cmd+right",
"command": "extension.brightscript.pressFwdButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "win+8",
"mac": "cmd+8",
"command": "extension.brightscript.pressStarButton",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
},
{
"key": "win+k",
"mac": "cmd+k",
"command": "extension.brightscript.sendRemoteText",
"when": "panelFocus && !inDebugRepl && !findWidgetVisible"
}
]
},
"watch": {
Expand Down

0 comments on commit cb54b86

Please sign in to comment.