From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kendall Shaw Newsgroups: gmane.emacs.help Subject: Re: List of evil ex commands? Date: Sat, 31 Oct 2015 13:43:08 -0700 Message-ID: <563527DC.7060306@kendallshaw.com> References: <56350BAA.2010700@kendallshaw.com> <87fv0qdei5.fsf@wanadoo.es> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1446324227 20475 80.91.229.3 (31 Oct 2015 20:43:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 31 Oct 2015 20:43:47 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Oct 31 21:43:33 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 1Zsczs-0001f7-3J for geh-help-gnu-emacs@m.gmane.org; Sat, 31 Oct 2015 21:43:32 +0100 Original-Received: from localhost ([::1]:56965 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zsczr-0008CG-Bw for geh-help-gnu-emacs@m.gmane.org; Sat, 31 Oct 2015 16:43:31 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:59938) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zsczg-0008Bz-OL for help-gnu-emacs@gnu.org; Sat, 31 Oct 2015 16:43:21 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zsczd-0006S2-IG for help-gnu-emacs@gnu.org; Sat, 31 Oct 2015 16:43:20 -0400 Original-Received: from d.mail.sonic.net ([64.142.111.50]:51595) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zsczd-0006Ql-9u for help-gnu-emacs@gnu.org; Sat, 31 Oct 2015 16:43:17 -0400 Original-Received: from kitsune-ko.localdomain (70-36-187-124.dsl.dynamic.sonic.net [70.36.187.124]) (authenticated bits=0) by d.mail.sonic.net (8.15.1/8.15.1) with ESMTPSA id t9VKhENQ013714 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Sat, 31 Oct 2015 13:43:14 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 In-Reply-To: <87fv0qdei5.fsf@wanadoo.es> X-Sonic-CAuth: UmFuZG9tSVaW+auBScYcF873Jbtm+IsflYtNRR729jfQwPtjx6Epu42OEEsWPP+W11irbWzXf/f92IZYlr+HG2b5RvoSuA7e X-Sonic-ID: C;nvStARCA5RGEGuK7sH9FTg== M;EN4BAhCA5RGEGuK7sH9FTg== X-Sonic-Spam-Details: 0.0/5.0 by cerberusd X-MIME-Autoconverted: from 8bit to quoted-printable by d.mail.sonic.net id t9VKhENQ013714 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 64.142.111.50 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:107881 Archived-At: On 10/31/2015 12:28 PM, =C3=93scar Fuentes wrote: > Kendall Shaw writes: > >> I know there is an evil list but I've tried twice and had not response >> when trying to join. > You can post through gmane.org using a news reader. > >> In vi/vim, to find a file I type :ex. In evil this quits emacs. So, do >> people use C-z C-x C-f to find a file? I'm using helm, so for me it is >> C-z C-x C-f C-k ./ to find a file... > For editing a file in vim you use > > :e {file} > > In Evil you type `:e TAB' and a list of completions will be shown. `:e' > always worked on vim too. Apparently `:ex' is too new, hence > unimplemented in Evil and is autocompleted to `exit'. > >> Do you know where I can find a list of ex commands in evil. I didn't >> immediately find it looking at evil-ex.el. > Search for evil-ex-define-cmd in evil-map.el. Thank you, that is certainly shorter than switching to emacs mode. The command :ex is what I have been using in vi since 1982. In vi it=20 switches to ex (the line editor that came after ed) mode. Kendall