diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-toot.el | 2 | ||||
-rw-r--r-- | lisp/mastodon.el | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 5a735dc..9f46cb6 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -887,7 +887,7 @@ meta fields respectively." (looking-at str-prefix))) (if (and (string= str-prefix "@") (> (length handle-before) 1)) ; more than just @ - (concat str-prefix (substring-no-properties handle-before 1)) ;handle + (concat str-prefix (substring-no-properties handle-before 1)) ; handle (concat str-prefix (company-grab-symbol))))) ; tag (candidates (funcall candidates-fun arg)) (annotation (funcall annot-fun arg)) diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 5be168c..e6dcd3c 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -91,6 +91,7 @@ (when (require 'lingva nil :no-error) (autoload 'mastodon-toot--translate-toot-text "mastodon-toot")) (autoload 'mastodon-search--trending-tags "mastodon-search") +(autoload 'mastodon-profile-account-settings "mastodon-profile") (autoload 'mastodon-profile--fetch-server-account-settings "mastodon-profile") (autoload 'mastodon-notifications--get-mentions "mastodon-notifications") (autoload 'mastodon-tl--view-lists "mastodon-tl") |