Function: semantic-imenu-toggle-bucketize-file

semantic-imenu-toggle-bucketize-file is an interactive and byte-compiled function defined in imenu.el.gz.

Signature

(semantic-imenu-toggle-bucketize-file)

Documentation

Toggle the ability of imenu to bucketize the current file.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/imenu.el.gz
;;; Interactive Utilities
;;
(defun semantic-imenu-toggle-bucketize-file ()
  "Toggle the ability of imenu to bucketize the current file."
  (interactive)
  (setq semantic-imenu-bucketize-file (not semantic-imenu-bucketize-file))
  ;; Force a rescan
  (setq imenu--index-alist nil))