Emacs

無法在 Emacs 中使用類似 Vim 的鍵綁定

  • June 19, 2009

我想將在 Emacs 中的視窗之間移動的命令替換為

Ctrl-t

虛擬碼中的命令

(global-set-key "\C-moveBetweenWindows" 'C-t)

如何重新映射 Emacs 中在視窗之間移動的命令?

在您的~/.emacs文件中,包括以下行:

(global-set-key "\C-t" 'other-window)

這將設置Ctrl-t( C-t) 移動到下一個視窗,就像C-x o鍵序列一樣。這將替換transpose-chars鍵綁定,如果需要,您可以將其設置為其他值。

引用自:https://serverfault.com/questions/17967