summaryrefslogtreecommitdiffstats
path: root/lisp/idutils.el
diff options
context:
space:
mode:
authorClaudio Fontana <sick_soul@users.sourceforge.net>2006-01-06 04:52:00 +0000
committerClaudio Fontana <sick_soul@users.sourceforge.net>2006-01-06 04:52:00 +0000
commitb5b7b0baf551299e058432d58d5ab2e21d16c312 (patch)
treef0535089c67a6d6fdd746532953007253dd08cdb /lisp/idutils.el
parenta15c29c1a101a6bedc1a0ee5f6efd694a1ff4cad (diff)
downloadidutils-b5b7b0baf551299e058432d58d5ab2e21d16c312.tar.gz
idutils-b5b7b0baf551299e058432d58d5ab2e21d16c312.tar.bz2
idutils-b5b7b0baf551299e058432d58d5ab2e21d16c312.zip
* s/id-utils/idutils/g;
* other small changes
Diffstat (limited to 'lisp/idutils.el')
-rw-r--r--lisp/idutils.el63
1 files changed, 63 insertions, 0 deletions
diff --git a/lisp/idutils.el b/lisp/idutils.el
new file mode 100644
index 0000000..b52e614
--- /dev/null
+++ b/lisp/idutils.el
@@ -0,0 +1,63 @@
+;;; idutils.el -- emacs interface to `lid -R grep', a.k.a. `gid'
+;;; Copyright (C) 1995, 1996, 2006 Free Software Foundation, Inc.
+;;; Greg McGary <gkm@gnu.ai.mit.edu>.
+
+;; This file is part of GNU idutils.
+
+;; GNU idutils is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 2, or (at your option)
+;; any later version.
+
+;; GNU idutils is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING. If not, write to the
+;; Free Software Foundation, 59 Temple Place - Suite 330, Boston,
+;; MA 02111-1307, USA.
+
+;;; This package provides the tools meant to help editing PO files,
+;;; as documented in the GNU idutils user's manual. See this manual
+;;; for user documentation, which is not repeated here.
+
+;;; To install, merely put this file somewhere GNU Emacs will find it,
+;;; then add the following lines to your .emacs file:
+;;;
+;;; (autoload 'gid "idutils")
+;;;
+;;; You may also adjust some customizations variables, below, by defining
+;;; them in your .emacs file.
+
+(require 'compile)
+(provide 'idutils)
+
+(defvar gid-command "gid" "The command run by the gid function.")
+
+(defun gid (args)
+ "Run gid, with user-specified ARGS, and collect output in a buffer.
+While gid runs asynchronously, you can use the \\[next-error] command to
+find the text that gid hits refer to. The command actually run is
+defined by the gid-command variable."
+ (interactive (list (read-input
+ (concat "Run " gid-command " (with args): ") (word-around-point))))
+ (let (compile-command
+ (compilation-error-regexp-alist grep-regexp-alist)
+ (compilation-buffer-name-function '(lambda (mode)
+ (concat "*" gid-command " " args "*"))))
+ ;; For portability to v19, use compile rather than compile-internal.
+ (compile (concat gid-command " " args))))
+
+(defun word-around-point ()
+ "Return the word around the point as a string."
+ (save-excursion
+ (if (not (eobp))
+ (forward-char 1))
+ (forward-word -1)
+ (forward-word 1)
+ (forward-sexp -1)
+ (buffer-substring (point) (progn
+ (forward-sexp 1)
+ (point)))))