Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.4.5

* Remove shortcuts Ctrl + 1, 2, 3, 4, 5 #401 (Fix #368)

These conflicted with default Visual Studio Code keyboard shortcuts. If you would like to restore them, see the [instructions in the Wiki](https://github.com/Ikuyadeu/vscode-R/wiki/Keyboard-shortcuts#removed-keyboard-shortcuts).

## 1.4.4

* Fix vulnerability issues
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ Full document is on the [Wiki page](https://github.com/Ikuyadeu/vscode-R/wiki)

## Features

* Run Source(`Ctrl+Shift+S` or Push icon![icon](images/FileDownload.png)) and Run Selected Line (`Ctrl+Enter`)
* Run `nrow`, `length`, `head`, `thead`, `names` functions (`Ctrl` + `1`, `2`, `3`, `4`, `5`)
* If you are using Mac `Ctrl` to `⌘`
* Run Source(`Ctrl+Shift+S` or Push icon![icon](images/FileDownload.png)) and Run Selected Line (`Ctrl+Enter`) (Mac: `Ctrl` to `⌘`)
* Run functions:
* `nrow` (`Show number of rows for selected object`)
* `length` (`Show length for a selected object`)
* `head` (`Show first part of a selected object`)
* `thead` (`Show first part of a selected object (transposed)`)
* `names` (`Show names for a selected object`)

![use Run .R](images/feature.png)

Expand Down
30 changes: 0 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -381,36 +381,6 @@
"mac": "option+enter",
"when": "editorTextFocus && editorLangId == 'r'"
},
{
"command": "r.nrow",
"key": "Ctrl+1",
"mac": "cmd+1",
"when": "editorTextFocus && editorLangId == 'r'"
},
{
"command": "r.length",
"key": "Ctrl+2",
"mac": "cmd+2",
"when": "editorTextFocus && editorLangId == 'r'"
},
{
"command": "r.head",
"key": "Ctrl+3",
"mac": "cmd+3",
"when": "editorTextFocus && editorLangId == 'r'"
},
{
"command": "r.thead",
"key": "Ctrl+4",
"mac": "cmd+4",
"when": "editorTextFocus && editorLangId == 'r'"
},
{
"command": "r.names",
"key": "Ctrl+5",
"mac": "cmd+5",
"when": "editorTextFocus && editorLangId == 'r'"
},
{
"command": "r.runSource",
"key": "shift+Ctrl+s",
Expand Down