我在ubuntu中安装了emacs ver 24,当我启动它时> emacs“文件” - 打开emacs,其中2个窗口垂直分割。一个窗口有我的“文件”,另一个窗口有“欢迎使用GNU Emacs ....”屏幕。
如何通过“欢迎使用GNU Emacs”阻止它打开窗口?我是否需要在.emacs文件中添加内容?
现在我尝试过:
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/fragment_detail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"
android:orientation="vertical">
...Content...
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
这些都不会阻止第二个窗口打开emacs欢迎。
答案 0 :(得分:0)
;; No emacs start-up message
(setq inhibit-startup-message t)
;; Consider also to start a server
(server-start)
这样在打开多个文件时会重复使用emacs实例