본문 바로가기

[IT/Programming]

Ctrl+Shift+P does NOT working in Editor (VS code, Sublime Text) :: 에디터에서 단축키가 먹지 않을때 해결법

728x90
반응형
# Ctrl+Shift+P does NOT working in Editor (VS code, Sublime Text) :: 에디터에서 단축키가 먹지 않을때 해결법 어느날 갑자기 VS (Visual Studio) code 와 Sublime Text editor 에서 Command 명령을 내리는 Ctrl+Shift+P 가 동작을 안했다. 검색해보니 가능한 시나리오가 다음과 같았다. stackoverflow.com :: Command Palette shortcut not working in Sublime Text3
  • A user installed plugin or custom key binding is bound to the same key, which is taking precedence and stopping the action that you expect from happening
  • Some external process is eating the keystroke before Sublime even gets to see it.
다른 플러그인/익스텐션이나 프로그램이 키를 덮어씌웠다는 뜻이다. 나의 경우에는 꿀캠 (HoneyCam.exe) 앱이 이 키를 먹고 있었던거 같다. 꿀캠을 끄니 다시 short key 가 제대로 동작. ## PH
  • 2024-08-03 : First posting.
## TOC ## VS code 에선 F1 키를 이용하거나 Ctrl+P 이후 > 키를 입력해서 Show All Commands 를 작동시키자. VS code 에선 F1 키도 Show All Commands 역할을 함으로 이 short key 를 이용하면 된다. 아니면 Go to Files... 키인 Ctrl+P 를 누른 후 > 키를 눌러서 command 를 입력하게 할수도 있다. ## Sublime Text - Preferences - Key Bindings 에서 다음과 같이 F1 키를 Command Pallete Key 로 추가로 지정해주자. ``` [ { "keys": ["f1"], "command": "show_overlay", "args": {"overlay": "command_palette"} } ] ```/ VS code 에서도 Ctrl+Shift+P 키와 F1 키가 모두 Show All Commands 에 해당한다. 이와 비슷하게 Sublime Text 에서도 F1 키를 설정해 놓음으로서 두 에디터에서 비슷한 경험을 유지할 수 있게 된다. ## 문제를 일으킨 프로그램/앱에서 단축키 설정을 바꾸자.
꿀캠에서 Ctrl+Shift+P 는 녹화 일시정지 Pause 를 나타내는 단축키다.
## RRA
    728x90
    반응형