怎样在 Emacs 中编辑文字区域: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
# 在 Emacs 中,用 package-list-packages 安装 <code> use-package </code> 拓展 | # 在 Emacs 中,用 package-list-packages 安装 <code> use-package </code> 拓展 | ||
# 在 Emacs 配置文件中写下: | # 在 Emacs 配置文件中写下: | ||
<syntaxhighlight lang="bash" line> (use-package edit-server | <syntaxhighlight lang="bash" line> | ||
(use-package edit-server | |||
:ensure t | :ensure t | ||
:commands edit-server-start | :commands edit-server-start |
Revision as of 17:02, 25 July 2024
- 在 Firefox 中,安装
Edit with Emacs
拓展 - 在 Emacs 中,用 package-list-packages 安装
server-edit
拓展 - 在 Emacs 中,用 package-list-packages 安装
use-package
拓展 - 在 Emacs 配置文件中写下:
(use-package edit-server
:ensure t
:commands edit-server-start
:init (if after-init-time
(edit-server-start)
(add-hook 'after-init-hook
#'(lambda() (edit-server-start))))
:config (setq edit-server-new-frame-alist
'((name . "Edit with Emacs FRAME")
(top . 200)
(left . 200)
(width . 80)
(height . 25)
(minibuffer . t)
(menu-bar-lines . t))))
即可。