Skip to content
This repository has been archived by the owner on Apr 9, 2020. It is now read-only.

Commit

Permalink
Merge pull request #14 from cssho/ChangeKeybindings2
Browse files Browse the repository at this point in the history
(refs #13)Change key bindings.
  • Loading branch information
cssho committed May 6, 2016
2 parents cce2f51 + 2420deb commit a25e7f4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ SVG Viewer for Visual Studio Code

![palette](img/palette.png)

### View SVG - `Ctrl(Cmd)+Shift+V O`
### View SVG - `Alt+S O`
SVGをエディタ上で表示

### Export PNG - `Ctrl(Cmd)+Shift+V E`
### Export PNG - `Alt+S E`
SVGをPNGに変換

### Export PNG with explicitly size - `Ctrl(Cmd)+Shift+V X`
### Export PNG with explicitly size - `Alt+S X`
サイズを明示的に指定して、SVGをPNGに変換

### Copy data URI scheme - `Ctrl(Cmd)+Shift+V C`
### Copy data URI scheme - `Alt+S C`
SVGをdata URI schemeに変換し、クリップボードにコピー

![preview](img/preview.png)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ SVG Viewer for Visual Studio Code

![palette](img/palette.png)

### View SVG - `Ctrl(Cmd)+Shift+V O`
### View SVG - `Alt+S O`
Display SVG on an Editor

### Export PNG - `Ctrl(Cmd)+Shift+V E`
### Export PNG - `Alt+S E`
Convert from SVG to PNG

### Export PNG with explicitly size - `Ctrl(Cmd)+Shift+V X`
### Export PNG with explicitly size - `Alt+S X`
Convert from SVG to PNG with explicitly size

### Copy data URI scheme - `Ctrl(Cmd)+Shift+V C`
### Copy data URI scheme - `Alt+S C`
Convert from SVG to data URI scheme and copy to the clipboard

![preview](img/preview.png)
Expand Down
Binary file modified img/palette.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-svgviewer",
"displayName": "SVG Viewer",
"description": "SVG Viewer for Visual Studio Code.",
"version": "1.1.10",
"version": "1.1.11",
"publisher": "cssho",
"engines": {
"vscode": "^0.10.8"
Expand Down Expand Up @@ -39,23 +39,19 @@
"keybindings": [
{
"command": "svgviewer.open",
"key": "ctrl+shift+v o",
"mac": "cmd+shift+v o"
"key": "alt+s o"
},
{
"command": "svgviewer.saveas",
"key": "ctrl+shift+v e",
"mac": "cmd+shift+v e"
"key": "alt+s e"
},
{
"command": "svgviewer.saveassize",
"key": "ctrl+shift+v x",
"mac": "cmd+shift+v x"
"key": "alt+s x"
},
{
"command": "svgviewer.copydui",
"key": "ctrl+shift+v c",
"mac": "cmd+shift+v c"
"key": "alt+s c"
}
],
"configuration": {
Expand Down

0 comments on commit a25e7f4

Please sign in to comment.