Questions tagged «deletion»

2
来自magit的Git rm
这是非常基本的,但是我一直无法在网上找到答案。是否可以git rm从magit删除跟踪的文件? 谢谢
27 magit  deletion 

3
退格键不加杀环
使用Crtl + Backspace或Ctrl + Del可将删除的文本添加到kill ring。 如何防止这种情况发生?删除时,我不需要将所有文本发送到kill ring。 补充问题:此默认设置的目的是什么?:)

1
删除不匹配的Isearch字符串部分,如果完全匹配则删除最后一个字符
我有以下 (defun isearch-del-fail-or-char () "Delete failed isearch text, or if there is none, a single character." (interactive) (if (isearch-fail-pos) (delete-region (isearch-fail-pos) (point)) (isearch-del-char))) (define-key isearch-mode-map (kbd "DEL") 'isearch-del-fail-or-char) 该代码的目的是delete在isearch中删除整个失败的字符串(或者如果没有失败的字符串,则仅删除一个字符)。 但是,delete-region是从isearch正在搜索的缓冲区中删除文本,而不是从isearch缓冲区本身删除。 正确的方法是什么?也欢迎批评我的emacs lisp样式的其余部分:)
11 isearch  deletion 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.