如何在 smartparens 中更改 sp-navigate-reindent-after-up 的值
how to change the value of sp-navigate-reindent-after-up in smartparens
我想更改 smartparens 的默认行为以删除关闭分隔符之前的空格。我的意思是,当我在 (a b c |
之后输入 )
时,我希望最后的结果是 (a b c)|
。这里,|
是光标。
我搜索了 documentation of smartparens,发现 sp-navigate-reindent-after-up 可能会响应此行为。但是,我不知道怎么改。
任何帮助将不胜感激。提前致谢。
我不是 smartparens 用户,但我从它的 wiki 中找到了答案:
您可以将 )
绑定到 sp-up-sexp
命令:
(define-key smartparens-mode-map ")" #'sp-up-sexp)
我想更改 smartparens 的默认行为以删除关闭分隔符之前的空格。我的意思是,当我在 (a b c |
之后输入 )
时,我希望最后的结果是 (a b c)|
。这里,|
是光标。
我搜索了 documentation of smartparens,发现 sp-navigate-reindent-after-up 可能会响应此行为。但是,我不知道怎么改。
任何帮助将不胜感激。提前致谢。
我不是 smartparens 用户,但我从它的 wiki 中找到了答案:
您可以将 )
绑定到 sp-up-sexp
命令:
(define-key smartparens-mode-map ")" #'sp-up-sexp)