yo1dog / vscode-cursor-align

Visual Studio Code Extension that aligns all cursors using spaces.
MIT License
22 stars 7 forks source link

alt+a not working #2

Open yo1dog opened 6 years ago

yo1dog commented 6 years ago

For some users, alt+a inserts characters or does nothing.

yo1dog commented 6 years ago

The default alt+a keybinding may be being caught higher up (ex: at the OS level). Try changing the keybinding.

Example entry to keybindings.json:

{
  "key": "ctrl+5",
  "command": "yo1dog.cursor-align.alignCursors",
  "when": "editorTextFocus"
}