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 #11 from cssho/ChangeKeybindings
Browse files Browse the repository at this point in the history
(refs #10)Change key bindings.
  • Loading branch information
cssho committed Apr 23, 2016
2 parents 3876cb6 + c386750 commit 43d9c12
Show file tree
Hide file tree
Showing 4 changed files with 17 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 @@ -13,16 +13,16 @@ SVG Viewer for Visual Studio Code

![palette](img/palette.png)

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

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

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

### Copy data URI scheme - `Ctrl(Cmd)+I C`
### Copy data URI scheme - `Ctrl(Cmd)+Shift+V 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 @@ -14,16 +14,16 @@ SVG Viewer for Visual Studio Code

![palette](img/palette.png)

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

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

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

### Copy data URI scheme - `Ctrl(Cmd)+I C`
### Copy data URI scheme - `Ctrl(Cmd)+Shift+V 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.
18 changes: 9 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",
"version": "1.1.6",
"version": "1.1.7",
"publisher": "cssho",
"engines": {
"vscode": "^0.10.8"
Expand Down Expand Up @@ -39,23 +39,23 @@
"keybindings": [
{
"command": "svgviewer.open",
"key": "ctrl+i o",
"mac": "cmd+i o"
"key": "ctrl+shift+v o",
"mac": "cmd+shift+v o"
},
{
"command": "svgviewer.saveas",
"key": "ctrl+i e",
"mac": "cmd+i e"
"key": "ctrl+shift+v e",
"mac": "cmd+shift+v e"
},
{
"command": "svgviewer.saveassize",
"key": "ctrl+i x",
"mac": "cmd+i x"
"key": "ctrl+shift+v x",
"mac": "cmd+shift+v x"
},
{
"command": "svgviewer.copydui",
"key": "ctrl+i c",
"mac": "cmd+i c"
"key": "ctrl+shift+v c",
"mac": "cmd+shift+v c"
}
],
"configuration": {
Expand Down

0 comments on commit 43d9c12

Please sign in to comment.