기록 #01: 컴퓨터/팁

Atom 에디터 Ctrl 멀티 클릭 안 될 때

JinH 2020. 7. 12. 03:55

문제

Atom 에디터에는 Ctrl 버튼을 누른 채로 클릭을 하면 멀티 클릭이 되는 기능이 있다.

이 기능이 비활성화 되었을 때.

해결

Ctrl + Shift + I 눌러서 개발자 콘솔 열어서 아래의 코드를 입력한다.

atom.config.set('core.editor.multiCursorOnClick', true);

참고

https://discuss.atom.io/t/ctrl-left-click-multi-cursor-not-working/75553/4

https://github.com/atom/atom/issues/20911

끝.