From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?=C3=93scar_Fuentes?= Newsgroups: gmane.emacs.help Subject: Re: List of evil ex commands? Date: Sat, 31 Oct 2015 20:28:18 +0100 Message-ID: <87fv0qdei5.fsf@wanadoo.es> References: <56350BAA.2010700@kendallshaw.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1446319739 22296 80.91.229.3 (31 Oct 2015 19:28:59 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 31 Oct 2015 19:28:59 +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 20:28:49 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 1ZsbpZ-0002IT-Kq for geh-help-gnu-emacs@m.gmane.org; Sat, 31 Oct 2015 20:28:49 +0100 Original-Received: from localhost ([::1]:56785 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsbpY-0004tw-PL for geh-help-gnu-emacs@m.gmane.org; Sat, 31 Oct 2015 15:28:48 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:47571) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsbpP-0004to-0C for help-gnu-emacs@gnu.org; Sat, 31 Oct 2015 15:28:39 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZsbpJ-00084K-Sv for help-gnu-emacs@gnu.org; Sat, 31 Oct 2015 15:28:38 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:51511) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsbpJ-00082y-MJ for help-gnu-emacs@gnu.org; Sat, 31 Oct 2015 15:28:33 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZsbpH-00021m-U3 for help-gnu-emacs@gnu.org; Sat, 31 Oct 2015 20:28:32 +0100 Original-Received: from 157.red-81-44-103.dynamicip.rima-tde.net ([81.44.103.157]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 31 Oct 2015 20:28:31 +0100 Original-Received: from ofv by 157.red-81-44-103.dynamicip.rima-tde.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 31 Oct 2015 20:28:31 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 23 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 157.red-81-44-103.dynamicip.rima-tde.net User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) Cancel-Lock: sha1:qR6WWqJlvWaZrhwae8TILskU8Zw= 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:107878 Archived-At: 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.