2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows で無変換キーをプレフィックスキーとして利用する。

Last updated at Posted at 2012-12-26

私はこのような設定をで無変換キーをプレフィックスキーとして利用しています。

(when (eq system-type 'windows-nt)
(defvar non-convert-map (make-keymap))
(define-key global-map (kbd "<non-convert>") non-convert-map)
)

これで、
(define-key non-convert-map (kbd "キー") '関数名)
のように定義できます。

わざわざキーマップを定義しなくても、
(global-set-key (kbd "<non-convert>キー") '関数名)
でもできます。

アプリケーションキーなども使えると思いますがそちらは試していません。

Emacs 側にどのような名前で認識されているかは、
キーを押した時に、エコーエリアに表示されるメッセージから
知ることができます。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?