Questions tagged «emacs»

GNU Emacs是一个可扩展的,可自定义的,自记录的文本编辑器,可以使用Lisp代码进行扩展。尽管Emacs是通用编辑器,但是有关扩展Emacs本身(通常是通过编写Emacs Lisp函数)或有关特定编程模式的问题,可能在此处成为话题。否则(也许在这种情况下),请考虑在Emacs Stack Exchange上提问。


3
如何使用Emacs Lisp检查文件是否存在?
我希望emacs将打开时生成的文件标记为只读。我缺少的难题部分是如何检查文件是否“存在”。我目前有以下内容: ;; ;; get file extension ;; (defun get-ext (file-name) (car (cdr (split-string file-name "\\.")))) ;; ;; get the base name of the file ;; (defun base-name (file-name) (car (split-string file-name "\\."))) ;; ;; if an 'lzz' file exists for this header, mark it as read only ;; (defun mark-read-only …
69 emacs  elisp 

10
emacs可以为我重新缩进HTML一大块吗?
在emacs中编辑HTML时,有没有一种方法可以自动漂亮地格式化标记的blob,并进行如下更改: <table> <tr> <td>blah</td></tr></table> ...变成这样: <table> <tr> <td> blah </td> </tr> </table>
69 html  emacs 


3
如何使Emacs显示空白?
如何使Emacs显示空白(如空格,制表符,行跳转等)。许多其他编辑器(例如Kate和Eclipse)都具有此功能,并且我发现由于空格和制表符(尤其是Python)的混合而使代码缩进时非常有用。
67 emacs  whitespace 

1
Emacs:无法验证签名archive-contents.sig
最近尝试更新emacs软件包并得到了这个。 Failed to verify signature archive-contents.sig: No public key for 066DAFCB81E42C40 created at 2019-10-02T10:10:02+0100 using RSA Command output: gpg: Signature made Wed 02 Oct 2019 10:10:02 AM BST gpg: using RSA key C433554766D3DDC64221BFAA066DAFCB81E42C40 gpg: Can't check signature: No public key 有什么想法吗?
34 emacs  gnupg 
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.