* 2002-12-12 Eric Hanchrow <[EMAIL PROTECTED]> list.cygwin
* Message-Id: <[EMAIL PROTECTED]>
> I'm using emacs-21.2-10.
>
> I frequently want to switch to the buffer named `*shell*', so I type
>     *Shell Command Output*             *shell*
>
> Now, I can understand that Emacs would ignore case when completing
> file names on Windows, since Windows itself doesn't distinguish file
> names by case.  But since Emacs does distinguish buffer names by case,
> I expect it, when completing buffer names, to ignore a buffer whose
> name differs in case from what I've typed.

You may like package `ibuffer'

  (global-set-key "\C-xb" 'iswitchb-buffer)
  (autoload 'iswitchb-buffer "iswitchb" "" t)

  (setq iswitchb-default-method     'always-frame)
  (setq iswitchb-case               nil)
  (setq iswitchb-resize-minibuffer-mode nil)

Just type ANY characters you remember, and hit RET.


Jari


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Reply via email to