diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-02-10 14:42:13 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-02-10 14:42:13 +0100 |
commit | 7cf49c7b028278dad424d36027e1ff7725121fad (patch) | |
tree | b04ae714b849b125d2fcf275b8f6513eca69ea5d | |
parent | elogt.el: semiquote -> quote (diff) | |
download | emacs-elogt-7cf49c7b028278dad424d36027e1ff7725121fad.tar.gz emacs-elogt-7cf49c7b028278dad424d36027e1ff7725121fad.tar.bz2 emacs-elogt-7cf49c7b028278dad424d36027e1ff7725121fad.zip |
elogt.el: add separators, quit and help
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r-- | elogt.el | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -321,6 +321,7 @@ Uses the `elogt--narrow' function." ["Open current entry" elogt-open-entry] ["Delete current entry" elogt-delete-entry] ["Refresh the table" elogt-refresh-table] + "--" ;; Menu-bar: narrow. ("Narrow" ["Narrow to Priority" elogt-narrow-priority] @@ -332,7 +333,10 @@ Uses the `elogt--narrow' function." ["Sort by Priority" elogt-sort-priority] ["Sort by Category" elogt-sort-category] ["Sort by Package" elogt-sort-package] - ["Sort by Time" elogt-sort-time]))) + ["Sort by Time" elogt-sort-time]) + "--" + ["Quit" quit-window] + ["Help" describe-mode])) (define-derived-mode elogt-mode tabulated-list-mode "ElogT" |