Emacs打开shell窗口

spacemacs可以通过shell layer实现单独开一个终端窗口

问题:

1. 这个终端窗口打开的vim的del功能不管用, 在MacOS下

在.spacemacs中取消shell layer的注释,用 M-m f e R 安装

重启emacs后,来使用一下:

打开shell

M-m ‘

打开了一个小窗口,是shell

这个默认高度比例真心舒服,赞一个!

Emacs打开shell窗口

清除shell

C-c M-o

默认使用eshell

在layer设置的地方,添加一行设置

(shell :variables
            shell-default-height 30
            shell-default-shell ‘eshell
            shell-default-position ‘bottom)

相关推荐