CMS솔루션마켓, 이온디 - 워드프레스, 라이믹스, 카페24, 그누보드, 엑셀

소모임

맥과 윈도우를 같이 사용하는 윈도우 사용자를 위한 팁입니다.


맥을 사용하다가 다시 윈도우로 사용할 때

단축키가 서로 맞지 않아

이를 hotkeyz, hotkeyp, autohotkey와 같은 프로그램을 이용해서 

단축키를 리맵핑해주는 식으로 사용을 하게 됩니다.


hotkeyp는 단순히 프로그램 실행 단축키 정도만 기능이 지원됐고

hotkeys는 remap으로 리매핍이 가능했으나, 기본 윈도우만큼 원활하지는 않았습니다.

사용은 autohotkey만큼 어렵지는 않으나, 약간의 불편함과 간혹 동작을 하지 않는 경우가 있어

기본 단축키 프로그램으로 사용하기는 적당하지 않았습니다.


autohotkey. 역시 오래 전 게임을 자동사냥툴 돌릴 때 사용해봤던 프로그램인데 당시 어떻게 사용했는지 

어디 적어놨을 건데 여튼 다시 배워봅시다. ㅠㅠ


http://www.kbdmania.net/xe/tipandtech/9125029


!w::  ; Alt+W hotkey
Send, {Ctrl down}w{Ctrl up}  ; Copies the selected text. ^c could be used as well, but this method is more secure.
;SendInput, [b]{Ctrl down}w{Ctrl up}[/b] ; Wraps the selected text in BBCode tags to make it bold in a forum.
return  ; This ends the hotkey. The code below this point will not get triggered.

!c::  ; 복사하기
Send, {Ctrl down}c{Ctrl up}  ;
;SendInput, [b]{Ctrl down}c{Ctrl up}[/b] ;
return  ;

!v::  ; 붙여넣기
Send, {Ctrl down}v{Ctrl up}  ;
;SendInput, [b]{Ctrl down}v{Ctrl up}[/b] ;
return  ;

!t::  ; 새탭
Send, {Ctrl down}t{Ctrl up}  ;
;SendInput, [b]{Ctrl down}t{Ctrl up}[/b] ;
return  ;

!a::  ; 전체선택
Send, {Ctrl down}a{Ctrl up}  ;
return  ;

!x::  ; 잘라내기
Send, {Ctrl down}x{Ctrl up}  ;
return  ;

참조사이트

https://yongil.tistory.com/184

https://edykim.com/ko/post/changing-keyboard-mapping-on-mac-karabiner/