From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alexis Newsgroups: gmane.emacs.help Subject: Re: $EDITOR to open at file end? Date: Thu, 05 Mar 2015 18:42:03 +1100 Message-ID: <87ioefki0k.fsf@gmail.com> References: <20150305002027882961376@bob.proulx.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-Trace: ger.gmane.org 1425541350 8778 80.91.229.3 (5 Mar 2015 07:42:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 5 Mar 2015 07:42:30 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Mar 05 08:42:28 2015 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 1YTQQN-0000nJ-Dl for geh-help-gnu-emacs@m.gmane.org; Thu, 05 Mar 2015 08:42:27 +0100 Original-Received: from localhost ([::1]:48783 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YTQQM-0007SN-Qd for geh-help-gnu-emacs@m.gmane.org; Thu, 05 Mar 2015 02:42:26 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33385) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YTQQB-0007P1-VA for help-gnu-emacs@gnu.org; Thu, 05 Mar 2015 02:42:16 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YTQQ8-0003rY-Qb for help-gnu-emacs@gnu.org; Thu, 05 Mar 2015 02:42:15 -0500 Original-Received: from mail-pd0-x22b.google.com ([2607:f8b0:400e:c02::22b]:34045) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YTQQ8-0003rH-KN for help-gnu-emacs@gnu.org; Thu, 05 Mar 2015 02:42:12 -0500 Original-Received: by pdjg10 with SMTP id g10so64368403pdj.1 for ; Wed, 04 Mar 2015 23:42:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:from:to:subject:in-reply-to:date:message-id:mime-version :content-type; bh=f3xOkzyhGbRHrPQOPVfzMorW7GGxOTgHcEPfCaic2x4=; b=NdP6H33s3o31yoxd0vRgMPdRz6YLw7HVhASmjP8YzarO+k5MZ+fjFIpiLBm0+fulzg u1Vv9OutHJKgQ9PgFBLB//c/4er9kHsYba995M+f6GebqtBgll39fJEIWKEKE78udwqX Fp9mfE/zttVEUu270mlZ3Wzq1tyHD1BGqk69GRSMME6f0nC9Igtevg3b48e+simVfYvM rkEGtRZ7CSdL425Dg1iYNnC9ac4dTQ0NmkEkODxholzr2h2cG0xSmEUynlPDMP6wmi8o QXQ8uuLk+wNfRfyqb7rq0IeJY9fdI6fCR+oaJVt4yS8g4tb60yFRBCPCsZF717AIhurc y8VA== X-Received: by 10.66.66.75 with SMTP id d11mr13567577pat.132.1425541330839; Wed, 04 Mar 2015 23:42:10 -0800 (PST) Original-Received: from localhost (ppp118-209-174-156.lns20.mel8.internode.on.net. [118.209.174.156]) by mx.google.com with ESMTPSA id bs2sm5999724pbd.74.2015.03.04.23.42.07 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 04 Mar 2015 23:42:09 -0800 (PST) In-reply-to: <20150305002027882961376@bob.proulx.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c02::22b 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:103031 Archived-At: On 2015-03-05T18:29:28+1100, Bob Proulx said: BP> Is there another way to instruct emacs explicitly to open the file BP> and go to the bottom of the file? Here's another possible kludge: $ emacs -Q --eval "(add-hook 'find-file-hook (lambda () (goto-char (point-max))))" :-) Alexis.