키보드 코드화를 허용하도록 키 매핑 변경 (Mac)


1

하나의 작업에 여러 개의 키 누르기를 동시에 매핑하는 방법을 찾고 있습니다. 예를 들어 ctrl-option을 누르는 것과 비슷한 방식으로 p-s-v와 같은 일반적인 문자를 사용하는 것과 같습니다. 이 키를 동시에 누르면 일부 동작이 수행됩니다.

우쿨렐레와 KeyRemap4Macbook을 모두 다운로드 받았지만 둘 다 특수 키 (ctrl, alt 등)가 아닌 단일 키를 다시 매핑 할 수 있습니다.

이것을 어떻게 할 수 있습니까?

답변:


2

다음을 사용할 수 있습니다. private.xml KeyRemap4MacBook에서 다음과 같이하십시오.

<?xml version="1.0"?>
<root>
  <item>
    <name>test</name>
    <identifier>test</identifier>
    <autogen>__SimultaneousKeyPresses__ KeyCode::Q, KeyCode::W, KeyCode::E</autogen>
  </item>
</root>

두 개 이상의 키를 사용하려면 다음을 사용하십시오. @begin@end:

__SimultaneousKeyPresses__
@begin
KeyCode::Q, KeyCode::W, KeyCode::E
@end
@begin
KeyCode::R
@end

이렇게하면 F를 누르면 동시에 Finder가 열립니다.

<vkopenurldef>
  <name>KeyCode::VK_OPEN_URL_FINDER</name>
  <url>file:///System/Library/CoreServices/Finder.app</url>
</vkopenurldef>
<item>
  <name>test</name>
  <identifier>test</identifier>
  <autogen>__SimultaneousKeyPresses__ KeyCode::F, KeyCode::I, KeyCode::VK_OPEN_URL_FINDER</autogen>
</item>

만나다 https://raw.github.com/tekezo/KeyRemap4MacBook/master/Tests/lib/string/data/checkbox.xml 더 많은 예제.


That 's 위대한 Lauri (나는 이것을 조사 할 것이고, 희망을 갖고 그것이 일한다)!
greedybuddha

그리고 그것은 잘 작동합니다! 많은 감사합니다!
greedybuddha

사이트가 지금 있습니다. pqrs.org/osx/karabiner
w00t
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.