[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Removing split window on start up
From: |
Sacha Chua |
Subject: |
Re: Removing split window on start up |
Date: |
Fri, 11 Apr 2014 12:35:51 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3 (windows-nt) |
"Dimech, Chris" <Chris.Dimech@CGG.com> writes:
Hello, Chris!
> How can I remove the split screen when I liad a file from the .emacs
> file I want to keep the startup splash screen but not split the screen
> with both my file and the splash screen, unless a file is not selected
Maybe add something like this in your ~/.emacs.d/init.el?
(when (> (length command-line-args) 1)
(setq inhibit-startup-screen t))
Sacha