branch: master commit ee0fa601149f5225bbae53ee0a4d85a5342d0b80 Author: Shihpin Tseng <def...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
Add show keys on mode line feature. --- ace-window.el | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ace-window.el b/ace-window.el index b688a0e..35e7cb1 100644 --- a/ace-window.el +++ b/ace-window.el @@ -102,6 +102,10 @@ Use M-0 `ace-window' to toggle this value." '((t (:foreground "gray40"))) "Face for whole window background during selection.") +(defface aw-mode-line-face + '((t (:foreground "black"))) + "Face used for ace window key in the mode-line.") + ;;* Implementation (defun aw-ignored-p (window) "Return t if WINDOW should be ignored." @@ -421,6 +425,8 @@ The point is writable, i.e. it's not part of space after newline." (forward-line)) (+ (point) h))))) +;;* Mode line + (provide 'ace-window) ;;; ace-window.el ends here