gpt4 book ai didi

elisp - (基础) Elisp 编程 : Special hook for Cut function in Emacs

转载 作者:行者123 更新时间:2023-12-04 05:38:16 26 4
gpt4 key购买 nike

我有一个文本文件,其中包含相关内容/段落。假设我从文本中剪切/杀死段落 A。我想编写一个在这种情况下调用的函数,因此相关的段落——比如说 B——也被删除了。一个很好的例子是其中包含引用/引用的文档。 - 即,每当您删除该文本时,引用也会被删除 - 就像 MS Office 所做的那样。理论上我认为:

1) 我需要一个用于 Cut 的钩子(Hook)——到目前为止我找不到合适的钩子(Hook)
2)可能带有正则表达式的搜索功能 - 查找相关文本
3)删除该文本

你能建议我如何进行吗?每个步骤等的提示。

最佳答案

为这种情况编写函数很容易:

(defun when-one-kill-one-and-three ()
"If a buffer has a string \"one\", it deletes it.
If in this buffer exists also a string \"three\", it will be killed afterwards. "
(interactive "*")
(save-excursion
(save-restriction
(widen)
(goto-char (point-min))
(while (search-forward "one" nil t 1)
(kill-region (match-beginning 0) (match-end 0))
(when (search-forward "three")
(kill-region (match-beginning 0) (match-end 0)))))))

关于elisp - (基础) Elisp 编程 : Special hook for Cut function in Emacs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11632662/

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