gpt4 book ai didi

emacs - 在 emacs 中自动转义拉出的字符串

转载 作者:行者123 更新时间:2023-12-02 21:32:03 24 4
gpt4 key购买 nike

这个周末我显然非常渴望向我的 Emacs 环境添加大量功能。我可以自己做一些基础知识,并寻找其他东西,但我一直无法找到解决方案(而且我对 Lisp 的了解还不够好,无法自己做这件事)。

我经常使用 HTML 字符串,有时,如果我将它们从一个 block 移动到另一种 block (或从一种语言移动到另一种语言),则字符串在未转义的地方会被破坏。所以,我想要一个执行类似操作的函数:

(defun smart-yank-in-string()
(if (stringp) ; Check if the point is in a string
; Check if the region created from the point to the end of the yank ends the string
; (and there is more yank left that isn't ";")
; Escape quotes for those locations recursively by prepending \
; Insert result into buffer @ mark
))

有什么聪明的想法吗?我认为它涉及使用kill-new来存储变量并遍历它,但我对 elisp 不够熟悉来解决它。

最佳答案

下一次复制应该插入转义字符串:

(defun escape-doublequotes-at-car-of-kill-ring ()
"Escape doublequotes in car of kill-ring "
(interactive)
(with-temp-buffer
(insert (car kill-ring))
(goto-char (point-min))
(while (search-forward "\"" nil t 1)
(replace-match "\\\\\""))
(kill-new (buffer-substring-no-properties (point-min) (point-max)))))

关于emacs - 在 emacs 中自动转义拉出的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22123027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com