diff options
| -rw-r--r-- | lisp/mastodon-widget.el | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/lisp/mastodon-widget.el b/lisp/mastodon-widget.el index 0c6542a..a326800 100644 --- a/lisp/mastodon-widget.el +++ b/lisp/mastodon-widget.el @@ -50,7 +50,8 @@ Note that such modes will need to require wid-edit.")  (defun mastodon-widget--return-item-widgets (list)    "Return a list of item widgets for each item, a string, in LIST."    (cl-loop for x in list -           collect `(choice-item :value ,x :format "%[%v%] "))) +           collect `(choice-item :value ,x :format "%[%v%] " +                                 :keymap ,mastodon-widget-keymap)))  (defun mastodon-widget--format (str &optional padding)    "Return a widget format string for STR, its name. | 
