diff --git a/README-ja.md b/README-ja.md index 6623f2b..4087f70 100644 --- a/README-ja.md +++ b/README-ja.md @@ -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) diff --git a/README.md b/README.md index 4b3b026..0c4d50d 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/img/palette.png b/img/palette.png index ad295ce..c0c33bb 100644 Binary files a/img/palette.png and b/img/palette.png differ diff --git a/package.json b/package.json index 5d57c59..462c2b9 100644 --- a/package.json +++ b/package.json @@ -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" @@ -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": {