Variable: semantic-imenu-sort-bucket-function

semantic-imenu-sort-bucket-function is a customizable and buffer-local variable defined in imenu.el.gz.

Documentation

Function to use when sorting tags in the buckets of functions.

See semantic-bucketize and the FILTER argument for more details on this function.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/imenu.el.gz
(defcustom semantic-imenu-sort-bucket-function nil
  "Function to use when sorting tags in the buckets of functions.
See `semantic-bucketize' and the FILTER argument for more details
on this function."
  :type '(radio (const :tag "No Sorting" nil)
		(const semantic-sort-tags-by-name-increasing)
		(const semantic-sort-tags-by-name-decreasing)
		(const semantic-sort-tags-by-type-increasing)
		(const semantic-sort-tags-by-type-decreasing)
		(const semantic-sort-tags-by-name-increasing-ci)
		(const semantic-sort-tags-by-name-decreasing-ci)
		(const semantic-sort-tags-by-type-increasing-ci)
		(const semantic-sort-tags-by-type-decreasing-ci)
                (function))
  :local t)