From 33d0e830929ef07f0e1aee84189fb8aec8d52f62 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 12:08:31 -0200 Subject: Bind switchto-map to "s" --- sx-question-list.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sx-question-list.el') diff --git a/sx-question-list.el b/sx-question-list.el index cf849db..c189ad8 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -314,10 +314,10 @@ into consideration. ("J" sx-question-list-next-far) ("K" sx-question-list-previous-far) ("g" sx-question-list-refresh) - (":" sx-question-list-switch-site) ("t" sx-tab-switch) ("a" sx-ask) - ("s" sx-search) + ("S" sx-search) + ("s" sx-switchto-map) ("v" sx-visit-externally) ("u" sx-toggle-upvote) ("d" sx-toggle-downvote) -- cgit v1.2.3 From 671dceecafb9cb48b739b7fb54bf2b71bbc7e32c Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 12:54:28 -0200 Subject: Make question-list--site buffer local. Don't ask me why it wasn't already. --- sx-question-list.el | 1 + 1 file changed, 1 insertion(+) (limited to 'sx-question-list.el') diff --git a/sx-question-list.el b/sx-question-list.el index c189ad8..9e08787 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -399,6 +399,7 @@ Non-interactively, DATA is a question alist." (defvar sx-question-list--site nil "Site being displayed in the *question-list* buffer.") +(make-variable-buffer-local 'sx-question-list--site) (defun sx-question-list-refresh (&optional redisplay no-update) "Update the list of questions. -- cgit v1.2.3