2

有没有办法让我的 Emacs 以预定义的框架作为我附加的屏幕截图开始?我不太熟悉如何在我的 .emacs 脚本中执行此操作...

带三帧的 Emacs

就像这样做一样简单:

  1. 水平分割窗口(并排创建两个窗口)
  2. split-window-vertically(将左边的第一个窗口分成两部分)。

在最后一个窗口中,我希望它上传日历。我做出这种安排主要是因为我的显示器左侧的液晶显示屏坏了。所以我的代码必须在屏幕的右侧:)

编辑 1 基于 Juanleon 的回答,我添加了另一个 eshell 窗口 + 打开一个特定的 *.org 文件(这是我的假设,我应该为项目工作启动 emacs):

;my preferred working space                                                                                                                                                                                                       
(find-file "docs/steps.org")
(split-window-horizontally)
(other-window 1)
(calendar)
(other-window 2) ;main code                                                                                                                                                                                                       
(split-window-vertically)
(other-window 1)
(eshell)
(other-window 2)

产生这种视觉效果: 在此处输入图像描述

4

1 回答 1

2

把它放在你的初始化文件的末尾:

    (split-window-horizontally)
    (other-window 1)
    (calendar)
    (other-window 1)
于 2013-09-30T07:28:02.180 回答