From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sivaram Neelakantan Newsgroups: gmane.emacs.help Subject: Configuring win32 Emacs for ipython? Date: Sun, 30 Jun 2013 12:26:26 +0530 Message-ID: <87fvw0t7c5.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1372575419 24773 80.91.229.3 (30 Jun 2013 06:56:59 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 30 Jun 2013 06:56: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 Sun Jun 30 08:57:00 2013 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 1UtBZD-00041N-86 for geh-help-gnu-emacs@m.gmane.org; Sun, 30 Jun 2013 08:56:59 +0200 Original-Received: from localhost ([::1]:43941 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UtBZC-0005JL-Vk for geh-help-gnu-emacs@m.gmane.org; Sun, 30 Jun 2013 02:56:58 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:41645) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UtBZ3-0005J2-9C for help-gnu-emacs@gnu.org; Sun, 30 Jun 2013 02:56:50 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UtBYz-0007Rp-Q4 for help-gnu-emacs@gnu.org; Sun, 30 Jun 2013 02:56:49 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:44765) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UtBYz-0007RH-96 for help-gnu-emacs@gnu.org; Sun, 30 Jun 2013 02:56:45 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UtBYu-0003re-H5 for help-gnu-emacs@gnu.org; Sun, 30 Jun 2013 08:56:40 +0200 Original-Received: from 122.178.198.207 ([122.178.198.207]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 30 Jun 2013 08:56:40 +0200 Original-Received: from nsivaram.net by 122.178.198.207 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 30 Jun 2013 08:56:40 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 31 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 122.178.198.207 User-Mail-Address: nsivaram.net@gmail.com User-Agent: Gnus/5.130007 (Ma Gnus v0.7) Emacs/24.3 (windows-nt) Cancel-Lock: sha1:GmSDaR6PESuRq2An4mBz26Klf2A= 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:91865 Archived-At: I have the following for the default python mode bundled with Emacs, what settings should I add for ipython support? This is for a Windows Emacs 24.3. The code snippets below works in sending the python code to the python interpreter and printing the results. --8<---------------cut here---------------start------------->8--- (setq python-python-command "C:\\Anaconda\\python") ;; no idea why popup is not being read;put path to load (add-to-list 'load-path "/cygdrive/c/gnu/elisp/auto-complete/lib/popup/") (add-to-list 'load-path "/cygdrive/c/gnu/elisp/auto-complete/") (require 'auto-complete) (add-hook 'python-mode-hook (function (lambda () (hs-minor-mode t) (local-set-key (quote [f7]) (quote hs-hide-block)) (local-set-key (quote [S-f7]) (quote hs-show-block)) (local-set-key [f8] (quote hs-show-all)) (auto-complete-mode 1) (ruler-mode t) (paren-toggle-matching-quoted-paren 1) (paren-toggle-matching-paired-delimiter 1)))) ;;;; --8<---------------cut here---------------end--------------->8--- sivaram --