Am 24.07.2007 um 10:31 schrieb David Portabella:
> Would it be possible to have window tabs? Here is some description: http://www.emacswiki.org/cgi-bin/wiki/ TabBarMode Here is the code: http://www-cdf.fnal.gov/~sthrlnd/emacs/tabbar.el Recently these key bindings and customisation were mentioned in this list: > (require 'tabbar) > (tabbar-mode) > (global-set-key [(control shift up)] 'tabbar-backward-group) > (global-set-key [(control shift down)] 'tabbar-forward-group) > (global-set-key [(control shift left)] 'tabbar-backward) > (global-set-key [(control shift right)] 'tabbar-forward) > > (custom-set-faces > ;; custom-set-faces was added by Custom. > ;; If you edit it by hand, you could mess it up, so be careful. > ;; Your init file should contain only one such instance. > ;; If there is more than one, they won't work right. > '(tabbar-button-face ((t (:inherit tabbar-default-face :foreground > "black" :box (:line-width 1 :color "#ffffff" :style > released-button))))) > '(tabbar-default-face ((t (:inherit variable-pitch :background > "#ffffff" :foreground "black" :height 0.9)))) > '(tabbar-selected-face ((t (:inherit tabbar-default-face :background > "#ffffff" :foreground "blue" :box (:line-width 1 :color "grey" :style > pressed-button))))) > '(tabbar-separator-face ((t (:inherit tabbar-default-face :box > (:line-width 1 :color "#ffffff" :style released-button) :height > 0.2)))) > '(tabbar-unselected-face ((t (:inherit tabbar-default-face :box > (:line-width 1 :color "#ffffff" :style released-button)))))) And: > I'm using tabbar, and I wondered if it's possible possible to have > *all* buffers show up, instead of just the ones within the current > group? > If you're using tabbar.el version 2 (from CVS), try this: (setq tabbar-buffer-groups-function (lambda () (list "All buffers"))) If you're using tabbar.el version 1.4 or less, try this: (setq tabbar-buffer-groups-function (lambda (buffer) (with-current-buffer (get-buffer buffer) (list "All buffers")))) -- Greetings Pete If you're not confused, you're not paying attention. --~--~---------~--~----~------------~-------~--~----~ "Carbon Emacs" group mailing list. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/carbon-emacs?hl=en -~----------~----~----~----~------~----~------~--~---
