Created
April 26, 2017 16:20
-
Star
(114)
You must be signed in to star a gist -
Fork
(12)
You must be signed in to fork a gist
-
-
Save redism/43bc51cab62269fa97a220a7bb5e1103 to your computer and use it in GitHub Desktop.
macOS Sierra에서 원화(₩) 대신 백 쿼트(`) 입력하기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then | |
echo "~/Library/KeyBindings/DefaultkeyBinding.dict already exists" | |
exit -1 | |
fi | |
mkdir -p ~/Library/KeyBindings | |
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict | |
{ | |
"₩" = ("insertText:", "\`"); | |
} | |
EOF | |
echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@mingkyme 파일 삭제하고 저 코드로 한번 더 실행해볼까요? 파일이 있는지 체크하고 없을 때 새로 생성하는거 같은데 한번 해보겠습니다!