Re: predictive.el -- New Release

2006-05-05 Thread John Sturdy
There are lots of things that it might be useful to do on getting a RET keypress- perhaps a return-key-hook would be useful? Likewise, for some things I've done, I would have found an end-of-word-typed hook useful, to be triggered whenever the user types something that ends a word (probably at

jpeg-mode.el

2006-05-05 Thread John Sturdy
I've written a major mode for jpeg files, which displays a more human-readable interpretation of the meta-data by means of overlays. The interpretation is not complete yet, but I'll carry on filling it in as time goes by. The code is at

Banner text generator

2006-05-05 Thread John Sturdy
Here's one I wrote long ago: a banner text generator, that converts strings to large ASCII-art letters. It's at http://www.cb1.com/~john/computing/emacs/lisp/misc/banner.el ___ gnu-emacs-sources mailing list gnu-emacs-sources@gnu.org

split-window-multi

2006-05-05 Thread John Sturdy
http://www.cb1.com/~john/computing/emacs/lisp/appearance/split-window-multi.el contains code to put lots of buffers on your screen at once, either vertically, or horizontally, or in a square grid. You can then pick the one you want, and do delete-other-windows from it.

Re: Colour scheme chooser

2006-05-05 Thread Phillip Lord
JS == John Sturdy [EMAIL PROTECTED] writes: JS At JS http://www.cb1.com/~john/computing/emacs/lisp/appearance/colour-schemes.el JS is a small package to switch foreground, background and cursor JS colours together, as co-ordinated sets. Have you seen color-theme.el... Cheers Phil

other-window-or-buffer

2006-05-05 Thread John Sturdy
Here's one of those commands I wouldn't be without, to avoid all that typing of buffer names (and all that hurried mistyping of buffer names). (defun other-window-or-buffer () (interactive) Switch to the next window, or, if there is only one window, the next buffer. If done repeatedly when

Re: Colour scheme chooser

2006-05-05 Thread John Sturdy
Thanks -- I hadn't seen that... it looks much better than mine. I was starting to go through my collection to share them rather than hoard them, but now I think I should first go through them to see what I've duplicated, first! ___ gnu-emacs-sources

Re: other-window-or-buffer

2006-05-05 Thread liyer . vijay
John Sturdy wrote: Here's one of those commands I wouldn't be without, to avoid all that typing of buffer names (and all that hurried mistyping of buffer names). (defun other-window-or-buffer () Just out of curiousity, which keybinding have you replaced? C-x o or C-x b ? Switch to the

RE: other-window-or-buffer

2006-05-05 Thread Drew Adams
Switch to the next window, or, if there is only one window, the next buffer. If done repeatedly when there is only one window, keeps getting different buffers from the buffer list If you want to cycle through buffers, have you looked at the M-x iswitchb-mode minor

Re: jpeg-mode.el

2006-05-05 Thread Thien-Thi Nguyen
From: John Sturdy [EMAIL PROTECTED] Date: 5 May 2006 09:11:47 -0700 http://www.cb1.com/~john/computing/emacs/lisp/graphics/jpeg-mode.el interesting. i wonder if bindat.el can be used to describe the headers (and their related processing). have you tried that? thi

Re: load-directory.el

2006-05-05 Thread Reiner Steib
On Fri, May 05 2006, John Sturdy wrote: http://www.cb1.com/~john/computing/emacs/lisp/startup/library-path.el contains a find-library function, like find-file but offering completion on the names of libraries on the load-path. Emacs' 22 builtin `find-library' already offers this. BTW,