diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-04 11:42:01 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-04 11:42:18 -0200 |
commit | 7792498420eeb3c1ba8de447b90ae19a9b9e5410 (patch) | |
tree | 58574241f17583abe767b72497fc2678c1944952 | |
parent | 6c7093fd2b9e0bc411e350b009a96fbe1ee53e27 (diff) |
Alphabetical sort.
-rw-r--r-- | sx-switchto.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sx-switchto.el b/sx-switchto.el index 064ba82..8305644 100644 --- a/sx-switchto.el +++ b/sx-switchto.el @@ -34,18 +34,18 @@ (mapc (lambda (x) (define-key sx-switchto-map (car x) (cadr x))) '( ;; These immitate the site's G hotkey. - ("m" sx-tab-meta-or-main) ("a" sx-ask) ("h" sx-tab-frontpage) + ("m" sx-tab-meta-or-main) ;; This is `n' on the site. ("u" sx-tab-unanswered) ;; These are extra things we can do, because we're awesome. - ("i" sx-inbox) ("f" sx-tab-featured) - ("U" sx-tab-unanswered-my-tags) + ("i" sx-inbox) ("n" sx-tab-newest) - ("w" sx-tab-week) + ("U" sx-tab-unanswered-my-tags) ("v" sx-tab-topvoted) + ("w" sx-tab-week) )) (provide 'sx-switchto) |