Skip to content

Commit

Permalink
Add timeline spec aliases as completion candidates.
Browse files Browse the repository at this point in the history
* twittering-mode.el: Add timeline spec aliases as completion
candidates on specifying a timeline spec.
(twittering-read-timeline-spec-with-completion): add timeline spec
aliases, defined in `twittering-timeline-spec-alias', as
completion candidates.
  • Loading branch information
masutaka authored and cvmat committed Jun 26, 2011
1 parent 2e856ea commit 2bb9651
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Expand Up @@ -5,6 +5,12 @@
`twittering-make-time-string' instead of `format-time-string'.
(twittering-make-time-string): new function.

* twittering-mode.el: Add timeline spec aliases as completion
candidates on specifying a timeline spec.
(twittering-read-timeline-spec-with-completion): add timeline spec
aliases, defined in `twittering-timeline-spec-alias', as
completion candidates.

2011-05-21 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el: Fix the message for dead process on basic
Expand Down
5 changes: 4 additions & 1 deletion twittering-mode.el
Expand Up @@ -7373,7 +7373,10 @@ entry in `twittering-edit-skeleton-alist' are performed.")
'(":direct_messages" ":direct_messages_sent"
":favorites" ":friends"
":home" ":mentions" ":public" ":replies"
":retweeted_by_me" ":retweeted_to_me" ":retweets_of_me")))
":retweeted_by_me" ":retweeted_to_me" ":retweets_of_me")
(mapcar (lambda (cell)
(concat "$" (car cell) (if (listp (cdr cell)) "()" "")))
twittering-timeline-spec-alias)))
(spec-string (twittering-completing-read prompt dummy-hist
nil nil initial 'dummy-hist))
(spec-string
Expand Down

0 comments on commit 2bb9651

Please sign in to comment.