Can't get the launch Inkscape shortcut to work #31
-
|
Hey, I'm have been using the snippets for quite a while now and they are amazing. Recently, I've tried to incorporate Inkscape using the guide here on GitHub; however, I get this warning and in the output: I'm using Mac and VsCode without vim; though it should work if i use different commands. The following command opens a new Inkscape instance. inkscape-figures create 'tests'This is my first GitHub post so I didn't really know what to include and what not. I'm sorry if it's all over the place. Here are my settingsIn the keybinds.json {
"key": "ctrl+f",
"command": "command-runner.run",
"args": {
"command": "inkscapeStart",
"terminal": {
"name": "runCommand",
"shellArgs": [],
"autoClear": true,
"autoFocus": true
}
}
},
{
"key": "ctrl+d",
"command": "extension.multiCommand.execute",
"args": {
"sequence": [
"editor.action.clipboardCopyAction",
"editor.action.insertLineAfter",
"cursorUp",
"editor.action.deleteLines",
{
"command": "editor.action.insertSnippet",
"args": {
"name": "incfig"
}
},
{
"command": "command-runner.run",
"args": {
"command": "inkscapeCreate",
},
"terminal": {
"name": "runCommand",
"shellArgs": [],
"autoClear": true,
"autoFocus": true
}
}
]
}
}settings.json "command-runner.terminal.name": "runCommand",
"command-runner.terminal.autoClear": false,
"command-runner.terminal.autoFocus": false,
"command-runner.commands": {
"inkscapeCreate": "inkscape-figures create ${selectedText} ${fileDirname}/Figures/",
"inkscapeEdit": "inkscape-figures edit ${fileDirname}/Figures/",
"inkscapeStart": "inkscape-figures watch",
},
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Update: I went through all the steps again and realised that multi-command was disabled; now it works!!!!! |
Beta Was this translation helpful? Give feedback.
Update: I went through all the steps again and realised that multi-command was disabled; now it works!!!!!