六一的部落格


关关难过关关过,前路漫漫亦灿灿。



为在Emacs中执行Shell命令提供支持


说明

  1. Shell可执行的命令,因为环境变量的缺失,在Emacs中无法正确执行;除非从终端运行Emacs,继承Shell环境变量
  2. 作者Purcell是Emacs博主, 很多人参考他的Emacs配置

exec-path-from-shell-安装

1(use-package exec-path-from-shell
2  :ensure t
3  :init
4  (when (memq window-system '(mac ns x))
5    (exec-path-from-shell-initialize))
6  )

exec-path-from-shell


为在Emacs中执行Shell命令提供支持


说明

  1. Shell可执行的命令,因为环境变量的缺失,在Emacs中无法正确执行;除非从终端运行Emacs,继承Shell环境变量
  2. 作者Purcell是Emacs博主, 很多人参考他的Emacs配置

exec-path-from-shell-安装

1(use-package exec-path-from-shell
2  :ensure t
3  :init
4  (when (memq window-system '(mac ns x))
5    (exec-path-from-shell-initialize))
6  )