From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eric Ludlam Newsgroups: gmane.emacs.help Subject: Re: Configuring auto completion for php-mode Date: Wed, 31 Jan 2007 14:32:38 -0500 Organization: The MathWorks, Inc., Natick, MA 01760 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1170272494 1673 80.91.229.12 (31 Jan 2007 19:41:34 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 31 Jan 2007 19:41:34 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 31 20:41:18 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HCLKF-0001jv-RF for geh-help-gnu-emacs@m.gmane.org; Wed, 31 Jan 2007 20:41:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HCLKE-0007Ta-NQ for geh-help-gnu-emacs@m.gmane.org; Wed, 31 Jan 2007 14:40:58 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newscon06.news.prodigy.net!prodigy.net!newsfeed-00.mathworks.com!news.mathworks.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 14 Original-NNTP-Posting-Host: ludlamelinux.dhcp.mathworks.com Original-X-Trace: fred.mathworks.com 1170271958 12357 144.212.107.78 (31 Jan 2007 19:32:38 GMT) Original-X-Complaints-To: news@mathworks.com Original-NNTP-Posting-Date: Wed, 31 Jan 2007 19:32:38 +0000 (UTC) User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:7QrzXN41krKaAF+IQ6E2b+j0Kzw= Original-Xref: shelby.stanford.edu gnu.emacs.help:145201 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:40807 Archived-At: >>> Christian Smietana seems to think that: >Hi, > >I use php-mode to edit PHP files. How do I configure auto completion of >function names and lookup of function definitions and parameters? You could use M-/ (dabbrev-expand) for completion, and etags for looking up functions. If you are looking for "intellisense" like behavior, adding support for CEDET/semantic (http://cedet.sf.net) would be a time consuming, but spiffy way to do so. Eric