Rafal Jedruszek | 1 Nov 2006 09:00

highlight-tail v1.3.4

Hi, 

New version (1.3.4) of highlight-tail-mode is out.

Webpage: http://nic-nac-project.net/~necui/ht.html

highlight-tail is a eyecandy minor-mode for (X)Emacs.  It changes
the background color of some last typed characters and smoothly
fade them out to the background color.  This creates the illusion
of drawing a "tail" in real time, when you write.  I know I'm
hopeless at explaining :) so you can see highlight-tail in action
here: http://nic-nac-project.net/~necui/img/htshow.gif or/and try
it.

==============================
Here are the changes since last time I posted highlight-tail here:

* 1.3.4 (01 Nov 2006)
     + Use `color-values' function instead of
       `color-name-rgb-alist' variable so that highlight-tail
       should work in Emacs on Windows and is simpler.  Thanks to
       Kevin Rodgers for reporting.
     + cl is now used only at compile time.  Thanks to Richard
       Stallman for reporting.

==============================
And here is the code:

;;; highlight-tail.el --- draw a "tail" while writing, by smoothly changing background color

(Continue reading)

Andreas Roehler | 5 Nov 2006 14:16
Picon

thingatpt-util.el 1.4


;;; thingatpt-util.el --- thing-at-point edit functions

;; Version: 1.4

;; Copyright (C) 2006  Andreas Roehler

;; Author: Andreas Roehler <andreas.roehler <at> easy-emacs.de>
;; Keywords: convenience, lisp

;; This file 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.

;; This file 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, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.

;;; Commentary: 

;; Provides thing-at-point functions with interactive
;; specs. 

(Continue reading)

Dave Love | 5 Nov 2006 17:38

VC support for bzr

[Sorry if this eventually turns up twice, but gnu-emacs-sources seems
to have eaten the original attempt.]

This provides basic support for the bzr system in VC.  I'd be
interested in any comments before sending it in the direction of bzr.
Per the commentary, I realize there's another implementation.

Caveats:  Various problems with VC itself prevent proper support for
non-RCS-like formats and apparently won't be fixed, so some aspects of
handling version tags and log files fail.  Also it seems that bzr
isn't stable, so there may well be problems with future versions of it.

Attachment (vc-bzr.el): application/emacs-lisp, 11 KiB
_______________________________________________
gnu-emacs-sources mailing list
gnu-emacs-sources <at> gnu.org
http://lists.gnu.org/mailman/listinfo/gnu-emacs-sources
Picon

globalff.el: Added option to match on basename instead of on the whole path

Source code, change log: http://www.emacswiki.org/cgi-bin/wiki/GlobalFF
Joe Corneli | 7 Nov 2006 18:41

index-cards.el

;;; index-cards.el -- write ersatz index cards with emacs

;; Copyright (C) 2006 Joseph Corneli <jcorneli <at> planetmath.org>
;; Notice: Copyright transfered to public domain wherever applicable.

;; Time-stamp: <2006-11-05 20:28:55 jcorneli>

;;; Commentary:

;; (Version 1.)  Quick hacks using a minibuffer-only frame which make
;; it look and feel sort of like you're writing large index cards on
;; the computer.  Edit and save a new numbered index card each time!

;;; Code:

(define-derived-mode index-card-mode text-mode "IC"
  "Type up an \"index card\"."
  (set-fill-column 84)
  (auto-fill-mode)
  (auto-save-mode 0)
  ;; I set things up so that the window did not scroll down to follow
  ;; point, but merely let the point move across the open space.
  (set (make-local-variable 'scroll-margin) 0)
  (message nil))

(defvar index-card-directory "~/pma/" "Home for index cards and related info.")

;; You can't switch buffers in the minibuffer frame, so you must chunk in
;; the text from elsewhere.
(defun make-card ()
(Continue reading)

Picon

idleloader.el --- load files while Emacs is idle

;;; idleloader.el --- load files while Emacs is idle

;; Copyright (C) 2006  Tamas Patrovics

;; Keywords: convenience

;; This file 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.

;; This file 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, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;;; Commentary:

;; Dynamic abbrev is great, however in a big software project it's
;; more useful when lots of source files are loaded, because then lots
;; of symbols can be completed from various buffers.
;;
;; Idleloader takes the files from `idleloader-files' and loads them
;; one by one while Emacs is idle. This way relevant buffers can be
;; loaded conveniently in the background instead of loading all of
(Continue reading)

Picon

globalff.el: globalff can be used as a universal file selector

Added experimental universal file selector feature. Globalff can be
used to select a path in any application, not just Emacs.

It's a bit rough on the edges, but working.

source code, change log: http://www.emacswiki.org/cgi-bin/wiki/GlobalFF
Joe Corneli | 10 Nov 2006 19:07

index-cards.el v2

;;; index-cards.el -- write ersatz index cards with emacs

;; Copyright (C) 2006 Joseph Corneli <jcorneli <at> planetmath.org>
;; Notice: Copyright transfered to public domain wherever applicable.

;; Time-stamp: <2006-11-10 12:05:51 jcorneli>

;;; Commentary:

;; (Version 1.)  Quick hacks using a minibuffer-only frame which make
;; it look and feel sort of like you're writing large index cards on
;; the computer.  Edit and save a new numbered index card each time!

;; (Version 2.) Bugfix.

;;; Code:

(define-derived-mode index-card-mode text-mode "IC"
  "Type up an \"index card\"."
  (set-fill-column 84)
  (auto-fill-mode)
  (auto-save-mode 0)
  ;; I set things up so that the window did not scroll down to follow
  ;; point, but merely let the point move across the open space.
  (set (make-local-variable 'scroll-margin) 0)
  (message nil))

(defvar index-card-directory "~/pma/" "Home for index cards and related info.")

;; You can't switch buffers in the minibuffer frame, so you must chunk in
(Continue reading)

spamfilteraccount@gmail.com | 10 Nov 2006 20:12
Picon

Re: globalff.el: globalff can be used as a universal file selector


spamfilteraccount <at> gmail.com írta:
> Added experimental universal file selector feature. Globalff can be
> used to select a path in any application, not just Emacs.
>
> It's a bit rough on the edges, but working.
>
> source code, change log: http://www.emacswiki.org/cgi-bin/wiki/GlobalFF

There were requests for more explanation what this feature is about, so
here it is:

Using globalff it is easy to select any file on the system by typing
some characters in its name provided there is an up to to date locate
database.

Globalff is so convenient for me that I wanted to use it in other
applications too, for example when opening a file in my browser or any
other application.

Suppose you're in your browser and pressed Ctrl+O to open a file, but
don't want to traverse the directories with the clumsy open dialog.
Instead you press a global hotkey which invokes emacs (which runs all
the time of course) via gnuclient. Eamcs pops up a globalff frame on
the screen, you type some characters, select the required file, press
ENTER. The popup frame disappears and the selected path is sent to the
active application with xte.

So convenient and quick file selection can be used in any application,
not just emacs.
(Continue reading)

Rafal Jedruszek | 11 Nov 2006 17:52

highlight-tail v1.3.6

Hi, 

New version (1.3.6) of highlight-tail-mode is out.

Webpage: http://nic-nac-project.net/~necui/ht.html

highlight-tail is a eyecandy minor-mode for (X)Emacs.  It changes
the background color of some last typed characters and smoothly
fade them out to the background color.  This creates the illusion
of drawing a "tail" in real time, when you write.  I know I'm
hopeless at explaining :) so you can see highlight-tail in action
here: http://nic-nac-project.net/~necui/img/htshow.gif or/and try
it.

==============================
Here are the changes since last time I posted highlight-tail here:

* 1.3.6 (11 Nov 2006)
     + No line exceeds 80 column.

* 1.3.5 (11 Nov 2006)
     + Do not activate if run under terminal (because it leads to
       errors).

==============================
And here is the code:

;;; highlight-tail.el --- draw a colourful "tail" while you write

;; Author: Rafal Jedruszek <necui-emahte <at> nic-nac-project.net>
(Continue reading)


Gmane