请问spacemacs python layer支持类似pycharm的缩进参考线吗?

我记得有个indent-guide也是干这事儿的……

M-x spacemacs/toggle-indent-guide or SPC t i,好像也有indent-guide-all 的包

非常感谢! 我去查查文档, 如果要在.spacemacs文件内默认开启的话,该设置哪个变量。

你直接counsel-M-x搜一下就有了,spacemacs/toggle-indent-guide-globally把这个函数加到user-config里。

highlight indent guides 应该就是你需要的那款,我用的效果如下:
2018-12-19_21-39-59

1 个赞

请问spacemacs怎么安装

在fotfiles里的dotspacemacs-additional-packages列表中加入highligt-indent-guides

然后在dotspacemacs/user-config里加入

(setq highlight-indent-guides-method 'character)
(setq highlight-indent-guides-responsive t)
(add-hook 'prog-mode-hook #'hightlight-indent-guides-mode)

可以达到类似pycharm的效果