Variable: tabulated-list-sort-key

tabulated-list-sort-key is a buffer-local variable defined in tabulated-list.el.gz.

Documentation

Sort key for the current Tabulated List mode buffer.

If nil, no additional sorting is performed. Otherwise, this should be a cons cell (NAME . FLIP). NAME is a string matching one of the column names in tabulated-list-format (the corresponding SORT entry in tabulated-list-format then specifies how to sort). FLIP, if non-nil, means to invert the resulting sort.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defvar-local tabulated-list-sort-key nil
  "Sort key for the current Tabulated List mode buffer.
If nil, no additional sorting is performed.
Otherwise, this should be a cons cell (NAME . FLIP).
NAME is a string matching one of the column names in
`tabulated-list-format' (the corresponding SORT entry in
`tabulated-list-format' then specifies how to sort).  FLIP, if
non-nil, means to invert the resulting sort.")