hikchoi
03/10/2022, 11:58 AM...
{
"key": "{key combo you want}",
"command": "dendron.gotoNote",
"when": "editorFocus",
"args": {
"column": -2
}
}
...
It is taking the value of ViewColumn
enum that the VSCode API provides, and in this case it's -2
. See https://code.visualstudio.com/api/references/vscode-api#ViewColumn if you want to specify any other columns.
The argument is used internally so the value it takes isn't user friendly 😅
Would you mind opening a feature request to expose this with a better name and properly document it?