这周你做了什么?2022-04-08 #12
Replies: 5 comments 11 replies
-
(defun my/project-eshell ()
(interactive)
(let* ((buf-name (project-prefixed-buffer-name "eshell")))
(if-let ((win (get-buffer-window buf-name)))
(delete-window win)
(when (= (length (window-list)) 1)
(split-window-horizontally))
(other-window 1)
(project-eshell))))
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
想在 Org mode 里更好的输入中文,首先一个问题需要解决:中英相邻的时候我习惯手动键入空格,这样会导致 Emacs 在空格的地方强行换行。看到 Emacs China 论坛上有关于此的很多讨论和解决办法,还在学习中。不知道有没更简单易上手的办法。 |
Beta Was this translation helpful? Give feedback.
-
之前用 Emacs 写 Org File 卡到爆炸,后来查了一下 Profile 发现 Company-mode 占用了过多的内存和 CPU。关了之后,芜湖,起飞 🛫️ |
Beta Was this translation helpful? Give feedback.
-
本周已经执行学习李杀 Elisp 教程的第一章,目前已经学完数据类型部分,已经将学习帖子发布在 Emacs-China 社区:https://emacs-china.org/t/elisp/18752/9 接下来今天打算学完 Elisp Basic。 |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions