LoginSignup
2
2

More than 5 years have passed since last update.

EmacsでTextExpanderが動かない?

Posted at

TextExpanderが便利と薦められて導入。

でもEmacsでうまく展開されない。

こんな記事を発見
http://dreadedmonkeygod.net/home/archive/2584

なるほど、TextExpanderはCommand+vでペーストするようですね
で、MacのEmacsではCommand+vはスクロールになってしまうと。

というわけで、Command+vをyankにして、
scroll-downはOption-vとしました。

(define-key global-map [(super ?v)] 'scroll-down)
(define-key global-map [(meta ?v)] 'yank)

解決・・なのか

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