diff options
author | H Durer <h.duerer@gmail.com> | 2018-03-10 16:43:54 +0000 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2018-08-10 22:20:04 -0400 |
commit | cb37df4cb3ddf8839c3b44db565a18c86e65705c (patch) | |
tree | 1e0d0a05f3e9ef95c1c8bfe26d54e65cfa634a93 /lisp/mastodon-tl.el | |
parent | 12b4620c34a490b324e08d8bb56f77b2ec926f59 (diff) |
Some small tweaks to our keymap handling. (#183)
- Use special mode which sets up a sensible base keymap.
- Define the keymap just once so that users can tweak it as they wish
without us messing with that on each invocation of mastodon-mode.
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index b873991..4190c4c 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -88,10 +88,6 @@ width fonts when rendering HTML text")) (define-key map [return] 'mastodon-tl--do-link-action-at-point) (define-key map [mouse-2] 'mastodon-tl--do-link-action) (define-key map [follow-link] 'mouse-face) - (define-key map [tab] 'mastodon-tl--next-tab-item) - (define-key map [M-tab] 'mastodon-tl--previous-tab-item) - (define-key map [S-tab] 'mastodon-tl--previous-tab-item) - (define-key map [backtab] 'mastodon-tl--previous-tab-item) (keymap-canonicalize map)) "The keymap set for things in the buffer that act like links (except for shr.el generate links). |