Last active
March 14, 2020 08:27
-
-
Save rkmathi/238d2f4d75fd0b177b22ee96456dc765 to your computer and use it in GitHub Desktop.
のどか設定
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
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
# Nodoka - dotjp.nodoka | |
# Copyright (C) 1999-2005, TAGA Nayuta <[email protected]> | |
# | |
# Modify by applet on 2014-11-11 for のどかGuiEdit | |
# | |
include "read-keyboard-define.nodoka" #1. キーボード定義ファイル 英語/日本語配列や、Emacsライク設定をシンボル定義(-DUSE104; -DUSE109; DUSEdefault)で切り替えます。 | |
keymap Global #2. グローバルキーマップの設定 | |
#key C-A-D = &DescribeBindings # (1) Ctrl-Alt-Dキーで、現在のキーバインド情報をログ出力 | |
#key S-F1= &DescribeBindings # (2) Shift-F1キーで、現在のキーバインド情報をログ出力 | |
#key F1 = &SendPostMessage("PostTray",,"のどか", 0x0205, 0, 0) # (3) F1キーで、のどかのメニューを開く | |
# CapsLock を LeftControl に変更 | |
mod Control += CapsLock | |
key *CapsLock = *LeftControl | |
# RightAlt を M0 に変更 | |
mod Alt -= RightAlt | |
mod M0 += RightAlt | |
# M0 の設定 | |
key M0-j = Left | |
key M0-k = Down | |
key M0-i = Up | |
key M0-l = Right | |
key M0-h = BackSpace | |
key M0-m = Return | |
key M0-n = Escape |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment