atom-editor cmd-click for multi-cursors not working anymore after cmd-click on a hyperlink
For a temporary fix:
- open the console (you can use ctrl+shift+I shortcut, respectively alt+command+I shortcut on MacOS),
- run
atom.config.set('core.editor.multiCursorOnClick', true);
.
I've solved this issue by changing the trigger keys to shift+control+click, in atom-ide-ui
, under the Hyperclick
section.
found it finally ... it was hyperclick plugin which redefined cmd-click.
But I had hyperclick plugin installed for months, it never interrupted multi-cursor from working ...
anyway ... kind of rubber duck debugging ...