如何在smartparens中更改sp-navigate-reindent-after-up的值

时间:2015-05-27 02:18:56

标签: emacs lisp elisp parentheses

我想更改smartparens的默认行为,以便在关闭分隔符之前删除空格。我的意思是,当我在)之后输入(a b c |时,我希望最终结果为(a b c)|。这里,|是光标。

我搜索了documentation of smartparens,发现sp-navigate-reindent-after-up可能会响应此行为。但是,我不知道如何改变它。

任何帮助都将非常感激。提前谢谢。

1 个答案:

答案 0 :(得分:0)

我不是smartparens的用户,但我从wiki找到答案:

您可以将)绑定到sp-up-sexp命令:

(define-key smartparens-mode-map ")" #'sp-up-sexp)