diff options
author | Sean Allred <code@seanallred.com> | 2014-11-08 14:17:24 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-08 14:18:41 -0500 |
commit | 611a00ffcd36915e7927c574dfdaec44d0c0fa58 (patch) | |
tree | e5c0b11149d859e4d598c009b50c5fa2b8adb298 | |
parent | 7ed29c4dc940a871562aaa802ac53ddee4c66a27 (diff) |
Delineate and alphabetize API symbols
It's ugly to look at, but diffs will be more precise.
-rw-r--r-- | sx.el | 40 |
1 files changed, 35 insertions, 5 deletions
@@ -71,11 +71,41 @@ a string, just return it." ;;; Interpreting request data (defvar sx--api-symbols - '(accept_rate answer_count answer_id answers body body_markdown close_vote_count upvoted downvoted - comment_count comment_id creation_date delete_vote_count display_name - edited favorite_count is_accepted is_answered last_activity_date - last_edit_date last_editor link owner profile_image question_id - reopen_vote_count reputation score tags title user_id user_type view_count) + '( + accept_rate + answer_count + answer_id + answers + body + body_markdown + close_vote_count + comment_count + comment_id + creation_date + delete_vote_count + display_name + downvoted + edited + favorite_count + is_accepted + is_answered + last_activity_date + last_edit_date + last_editor + link + owner + profile_image + question_id + reopen_vote_count + reputation + score + tags + title + upvoted + user_id + user_type + view_count + ) "") (defun sx--deep-search (symbol list) |