From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sacha Chua Newsgroups: gmane.emacs.help Subject: Re: Removing split window on start up Date: Fri, 11 Apr 2014 12:35:51 -0400 Message-ID: <868urbygbc.fsf@sachachua.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1397234189 23816 80.91.229.3 (11 Apr 2014 16:36:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 11 Apr 2014 16:36:29 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Apr 11 18:36:22 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WYeRB-0007OY-JG for geh-help-gnu-emacs@m.gmane.org; Fri, 11 Apr 2014 18:36:21 +0200 Original-Received: from localhost ([::1]:58964 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WYeRB-0008LP-5M for geh-help-gnu-emacs@m.gmane.org; Fri, 11 Apr 2014 12:36:21 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:57176) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WYeQw-0008K2-Mr for help-gnu-emacs@gnu.org; Fri, 11 Apr 2014 12:36:11 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WYeQs-0005bH-AI for help-gnu-emacs@gnu.org; Fri, 11 Apr 2014 12:36:06 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:45701) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WYeQs-0005bA-4U for help-gnu-emacs@gnu.org; Fri, 11 Apr 2014 12:36:02 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WYeQo-000731-ED for help-gnu-emacs@gnu.org; Fri, 11 Apr 2014 18:35:58 +0200 Original-Received: from cpe000e0c091bfa-cm78cd8ec639f5.cpe.net.cable.rogers.com ([99.232.103.238]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 11 Apr 2014 18:35:58 +0200 Original-Received: from sacha by cpe000e0c091bfa-cm78cd8ec639f5.cpe.net.cable.rogers.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 11 Apr 2014 18:35:58 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 14 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: cpe000e0c091bfa-cm78cd8ec639f5.cpe.net.cable.rogers.com User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (windows-nt) Cancel-Lock: sha1:MNydBCzXnZfEs1MB0DKOnAKW4w8= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:97095 Archived-At: "Dimech, Chris" 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