Go To Note actually takes an argument to open it t...
# questions
h
Go To Note actually takes an argument to open it to the side. Try adding this in your `keybindings.json`:
Copy code
...
  {
    "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?