Next: , Previous: , Up: Customisation  


Q3.8.5: How can I bind a key to a function to toggle the toolbar?

Try something like:

(defun my-toggle-toolbar ()
  (interactive)
  (set-specifier default-toolbar-visible-p
                 (not (specifier-instance default-toolbar-visible-p))))
(global-set-key "\C-xT" 'my-toggle-toolbar)