Binding M- / M- in Emacs 23.1.1

后端 未结 7 588
南笙
南笙 2020-11-27 18:36

I\'m trying to put in a feature that I miss from Eclipse, where Alt+[Up/Down] transposes the lines up or down, but can not for the life of m

7条回答
  •  迷失自我
    2020-11-27 19:05

    works on OSX Terminal:

    (global-set-key (kbd "ESC ") 'transpose-line-up)
    (global-set-key (kbd "ESC ") 'transpose-line-down)
    

提交回复
热议问题