Hi all,
Scott Randby wrote:
>>> One reason I want pop-up-windows to be set to nil is because I
>>> frequently use C-x C-b to look at the buffer list. If pop-up-windows is
>>> set to t, then C-x C-b opens the buffer list in a pop-up window while
>>> the active cursor is in the other window. This is ridiculous.
Just on that one point, a trick read in "Emacs Lisp programming" IIRC:
#+begin_src emacs-lisp
;; rebind `C-x C-b'
(global-set-key (kbd "C-x C-b") 'buffer-menu)
;; `buffer-menu' moves point in the window which lists your buffers
#+end_src
Best regards,
Seb
--
Sebastien Vauban