Mercurial > dotfiles
comparison .elisp/pycomplete.el @ 174:014e745b2d04
python-mode: updating to current bzr version
This is bzr revision 351, which is revision-id: barry@python.org-20090320013721-awwzwv1mfl7hicdf
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 16 Dec 2009 22:57:36 -0600 |
parents | b5d75594b356 |
children |
comparison
equal
deleted
inserted
replaced
173:fd92c15701ae | 174:014e745b2d04 |
---|---|
1 ;;; Complete symbols at point using Pymacs. | 1 ;;; Complete symbols at point using Pymacs. |
2 | 2 |
3 ;;; See pycomplete.py for the Python side of things and a short description | 3 ;; Copyright (C) 2007 Skip Montanaro |
4 ;;; of what to expect. | 4 |
5 ;; Author: Skip Montanaro | |
6 ;; Maintainer: skip@pobox.com | |
7 ;; Created: Oct 2004 | |
8 ;; Keywords: python pymacs emacs | |
9 | |
10 ;; This software is provided as-is, without express or implied warranty. | |
11 ;; Permission to use, copy, modify, distribute or sell this software, | |
12 ;; without fee, for any purpose and by any individual or organization, is | |
13 ;; hereby granted, provided that the above copyright notice and this | |
14 ;; paragraph appear in all copies. | |
15 | |
16 ;; Along with pycomplete.py this file allows programmers to complete Python | |
17 ;; symbols within the current buffer. See pycomplete.py for the Python side | |
18 ;; of things and a short description of what to expect. | |
5 | 19 |
6 (require 'pymacs) | 20 (require 'pymacs) |
7 (require 'python-mode) | 21 (require 'python-mode) |
8 | 22 |
9 (pymacs-load "pycomplete") | 23 (pymacs-load "pycomplete") |