This file contains hidden or 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
| # (option) set alias | |
| alias ec="emacsclient -t" |
This file contains hidden or 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
| ; Vim系で日本語入力している際に、Insert->normal時にIME OFFにするスクリプト | |
| #Requires AutoHotkey v2.0 | |
| #InputLevel 1 | |
| Esc:: { | |
| Send("{Esc}") | |
| IME_OFF() | |
| } | |
| ^[:: { |