From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Jude DaShiell Newsgroups: gmane.emacs.help Subject: Re: Is it possible to start emacs w/o a split frame ? Date: Wed, 20 Feb 2019 13:10:57 -0500 Message-ID: References: <20190220121053.3a71d5e2@mistral> <20190220173400.GB11320@tuxteam.de> <20190220125210.4930c914@mistral> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="194872"; mail-complaints-to="usenet@blaine.gmane.org" To: jonetsu , help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Feb 20 19:11:42 2019 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.89) (envelope-from ) id 1gwWLO-000obR-8J for geh-help-gnu-emacs@m.gmane.org; Wed, 20 Feb 2019 19:11:42 +0100 Original-Received: from localhost ([127.0.0.1]:45117 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gwWLN-0007JH-46 for geh-help-gnu-emacs@m.gmane.org; Wed, 20 Feb 2019 13:11:41 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:58585) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gwWKo-0007D0-Tr for help-gnu-emacs@gnu.org; Wed, 20 Feb 2019 13:11:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gwWKl-0008NV-4P for help-gnu-emacs@gnu.org; Wed, 20 Feb 2019 13:11:04 -0500 Original-Received: from mailbackend.panix.com ([166.84.1.89]:53263) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gwWKj-0008ME-5f for help-gnu-emacs@gnu.org; Wed, 20 Feb 2019 13:11:01 -0500 Original-Received: from panix1.panix.com (panix1.panix.com [166.84.1.1]) by mailbackend.panix.com (Postfix) with ESMTP id 444QdY3P5jz1bKv; Wed, 20 Feb 2019 13:10:57 -0500 (EST) Original-Received: by panix1.panix.com (Postfix, from userid 20712) id 444QdY28HHzcbV; Wed, 20 Feb 2019 13:10:57 -0500 (EST) Original-Received: from localhost (localhost [127.0.0.1]) by panix1.panix.com (Postfix) with ESMTP id 444QdY1sV9zcbR; Wed, 20 Feb 2019 13:10:57 -0500 (EST) In-Reply-To: <20190220125210.4930c914@mistral> X-detected-operating-system: by eggs.gnu.org: GNU/Linux (Android) X-Received-From: 166.84.1.89 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.help:119494 Archived-At: On Wed, 20 Feb 2019, jonetsu wrote: > Date: Wed, 20 Feb 2019 12:52:10 > From: jonetsu > To: help-gnu-emacs@gnu.org > Subject: Re: Is it possible to start emacs w/o a split frame ? > > On Wed, 20 Feb 2019 18:34:00 +0100 > wrote: > > > (setq inhibit-splash-screen t) > > Thanks ! > > Script started on Wed 20 Feb 2019 01:08:38 PM EST jude[~]$ cat .emacs (require 'package) (package-initialize) (setq inhibit-splash-screen t) ;; Show keystrokes (setq echo-keystrokes 0.02) ;; loose hourglass for text terminals without mouse (setq display-hourglass nil) (add-to-list 'package-archives '("marmalade" . "https://marmalade-repo.org/packages/")) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t) (require 'saveplace) ;; optional keyboard short-cut (global-set-key "\C-xm" 'browse-url-at-point) (setq fill-column 72) (setq use-dialog-box nil) (setq delete-old-versions t) (add-hook 'message-mode-hook 'turn-on-orgtbl) (setq org-table-use-standard-references t) (setq-default display-line-numbers 'relative) jude[~]$ emacs --version GNU Emacs 25.3.1 Copyright (C) 2017 Free Software Foundation, Inc. GNU Emacs comes with ABSOLUTELY NO WARRANTY. You may redistribute copies of GNU Emacs under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING. jude[~]$ emacs .emacs [?25h[?8c[?25h[?0c [?25h[?8c[?25l[?1c-UUU:----F1 *scratch*  All L1 (Lisp Interaction) ---------------------------------------------------------------------------------------------------------------------------------------------- [?25h[?0c[?25h[?8c[?25l[?1cFor information about GNU Emacs and the GNU system, type C-h C-a.File Edit Options Buffers Tools Emacs-Lisp Help   (require 'package) (package-initialize) (setq inhibit-splash-screen t) ;; Show keystrokes   (setq echo-keystrokes 0.02) ;; loose hourglass for text terminals without mouse   (setq display-hourglass nil) (add-to-list 'package-archives '("marmalade" . "https://marmalade-repo.org/packages/")) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t) (require 'saveplace) ;; optional keyboard short-cut   (global-set-key "\C-xm" 'browse-url-at-point) (setq fill-column 72) (setq use-dialog-box nil) (setq delete-old-versions t) (add-hook 'message-mode-hook 'turn-on-orgtbl) (setq org-table-use-standard-references t) (setq-default display-line-numbers 'relative)                                    -UU-:----F1 .emacs  All L1 (Emacs-Lisp) ---------------------------------------------------------------------------------------------------------------------------------------------------- [?25h[?0c[?25h[?8c[?25l[?1cC-x [?25h[?0c[?25h[?8c[?25l[?1c- [?25h[?0c[?25h[?8c[?25l[?1c C-c [?25h[?0c[?25h[?8c[?25h[?0cjude[~]$ exit exit Script done on Wed 20 Feb 2019 01:09:22 PM EST --