Andreas Röhler | 1 Mar 2012 14:30
Picon

which-field - return field number cursor is in

Cheers,

Andreas

--
http://launchpad.net/python-mode
http://launchpad.net/s-x-emacs-werkstatt/
Attachment (which-field.el): text/x-emacs-lisp, 1820 bytes
_______________________________________________
gnu-emacs-sources mailing list
gnu-emacs-sources <at> gnu.org
https://lists.gnu.org/mailman/listinfo/gnu-emacs-sources
Ren Victor | 8 Mar 2012 15:09
Picon

Iedit 0.95 -- Edit multiple regions in the same way simultaneously

Hello,

I am glad to announce the new Iedit package release.  Several
enhancements had been made since last post here.

- Renaming refactoring is more convenient

- A lot of operation on the whole occurrences are added

- A *Visual Rectangle" support is added.

You can obtain it here: http://www.emacswiki.org/emacs/iedit.el or
https://github.com/victorhge/iedit/blob/master/iedit.el.

It is also attached.

Readme
----
This package is an Emacs minor mode and allows you to edit one
occurrence of some text in a buffer or region, and simultaneously have
other occurrences edited in the same way, with visual feedback as you
type.

Normal scenario of Iedit mode is like:

- Highlight certain contents - by press C-;

  All occurrences of a symbol, string or a rectangle in the buffer or
a
  region may be highlighted corresponding to current mark, point and
(Continue reading)

Thierry Volpiatto | 11 Mar 2012 08:54
Picon
Gravatar

Ioccur v2.4

Hi all,
Ioccur version 2.4 is available here:
http://mercurial.intuxication.org/hg/ioccur
and
http://repo.or.cz/w/Emacs-ioccur.git

Include few bugfixes and cursor movements (C-a/e/b/f) in the read-key
prompt.

--

-- 
  Thierry
Get my Gnupg key:
gpg --keyserver pgp.mit.edu --recv-keys 59F29997 
Aaron S. Hawley | 21 Mar 2012 14:49
Picon
Gravatar

M-x in Lisp

M-x or `execute-extended-command' is a C primitive.  Here's a Lisp
version that works *only* in the Emacs 24 pretest.  I've purposely
cargo culted the original C version, including carrying over the
comments.  I've been using using and maintaining this code since 2008
and haven't had any issues.  After 24.1 is released (any day now), I'm
hoping to contribute it back so it can be included in a future release
of Emacs (24.2, 25.1?).  Send me comments off-list if you come across
any issues with using it.

Install by putting the following snippet in your .emacs, and putting
the library m-x.el (attached) in your load-path.

(unless (fboundp 'primitive-execute-extended-command)
  (fset 'primitive-execute-extended-command
        (symbol-function 'execute-extended-command)))
(defalias 'execute-extended-command 'ash-execute-extended-command)

(autoload 'ash-execute-extended-command "m-x"
  "Read function name, then read its arguments and call it.

\(fn prefixarg)"
  'interactive)
Attachment (m-x.el): application/octet-stream, 3224 bytes
_______________________________________________
gnu-emacs-sources mailing list
gnu-emacs-sources <at> gnu.org
https://lists.gnu.org/mailman/listinfo/gnu-emacs-sources
(Continue reading)


Gmane