Spacemacs:如何全局自动禁用 smartparens?

Posted

技术标签:

【中文标题】Spacemacs:如何全局自动禁用 smartparens?【英文标题】:Spacemacs: How do I disable smartparens globally and automatically? 【发布时间】:2016-10-17 19:10:28 【问题描述】:

我想禁用 spacemacs 中的 smartparens ever。我知道我可以使用 SPC t C-p 全局关闭它们。我不想每次打开 spacemacs 时都必须输入。

我尝试将以下内容放入我的 .spacemacs user-config() 部分(虽然并不真正理解我在做什么)但无济于事:

(setq-default turn-off-smartparens-mode t)

那没有任何作用,所以我尝试了:

(add-hook 'disable-smartparens
          (lambda()
            (smartparens-strict-mode -1)
            (turn-off-smartparens-mode t)))

这也不起作用。

【问题讨论】:

【参考方案1】:

添加到dotspacemacs-excluded-packages:

dotspacemacs-excluded-packages
'(
  smartparens
 )

【讨论】:

以上是关于Spacemacs:如何全局自动禁用 smartparens?的主要内容,如果未能解决你的问题,请参考以下文章

用spacemacs打造c++ IDE

用spacemacs打造c++ IDE

[spacemacs]anaconda自动补全不工作

自动禁用特定主要模式的全局次要模式

spacemacs及python学习-坑之记录

spacemacs使用semantic跳转代码