aboutsummaryrefslogtreecommitdiff
path: root/sx-question-print.el
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #170 from vermiculus/issue-#157--zlibSean Allred2014-12-201-3/+0
|\ | | | | Use `zlib-decompress-region` when available (24.4+) and handle UTF-8 encoding correctly.
| * Handle utf-8 encoding the right way.Artur Malabarba2014-12-201-3/+0
| |
* | Hot fix #171. Check if .score is a numberArtur Malabarba2014-12-201-2/+2
| |
* | Hotfix, don't barf on links we don't understand.Artur Malabarba2014-12-201-4/+5
|/ | | | These are usually not links. See the end of http://emacs.stackexchange.com/q/3727/50
* Merge pull request #165 from vermiculus/better-fillingSean Allred2014-12-201-30/+49
|\ | | | | | | | | Better filling Ignore HTML comments when filling body text and do not attempt to fill headlines.
| * Fix return valuesArtur Malabarba2014-12-181-2/+5
| |
| * Reorganize functions.Artur Malabarba2014-12-181-18/+22
| |
| * Reimplement reference not-fillingArtur Malabarba2014-12-181-0/+7
| |
| * Don't fill headlinesArtur Malabarba2014-12-181-0/+8
| |
| * Refactor and simplify sx-question-mode--skip-FOO functions.Artur Malabarba2014-12-181-34/+19
| | | | | | | | | | They no longer need to worry about restoring point. Just move point to its destination and return non-nil if it worked.
| * Don't fill comments. Affects #141Artur Malabarba2014-12-181-0/+12
| |
* | The separator above body is no longer a sectionArtur Malabarba2014-12-181-2/+1
| | | | | | | | I got tired of having to hit `n` twice to move past the body.
* | Merge pull request #160 from vermiculus/better-modesSean Allred2014-12-181-1/+1
|\ \ | | | | | | Better major-modes
| * | delay-mode-hooks on markdown-mode. Fix #159Artur Malabarba2014-12-161-1/+1
| | |
* | | Merge pull request #162 from vermiculus/comment-enhancementSean Allred2014-12-181-11/+15
|\ \ \ | |_|/ |/| | Comment enhancement
| * | Fix score checkingArtur Malabarba2014-12-181-4/+5
| | |
| * | Display comment scoreArtur Malabarba2014-12-161-10/+13
| |/
* | Hotfix Don't use string-trim. Fix #164Artur Malabarba2014-12-181-1/+1
| |
* | Hotfix filling code blocks. Fix #163Artur Malabarba2014-12-171-15/+19
|/ | | | | When filling a paragraph, narrow to region after point, so we don't affect anything behind point (the code block).
* Merge pull request #141 from vermiculus/babelSean Allred2014-12-111-20/+7
|\ | | | | Font-lock code blocks according to mode.
| * Fix some implementation bugsArtur Malabarba2014-12-091-5/+4
| |
| * Don't require sxArtur Malabarba2014-12-091-3/+1
| | | | | | | | Requiring sx is not needed because the macro is autoloaded.
| * Patch sx and sx-question-print to use sx-babel.Artur Malabarba2014-12-091-17/+7
| |
* | Merge branch 'master' into fix-@highligthingArtur Malabarba2014-12-091-1/+1
|\| | | | | | | | | Conflicts: test/tests.el
| * Improve some header comments.Artur Malabarba2014-12-061-1/+1
| |
* | Take any non-spaceArtur Malabarba2014-12-031-1/+1
| |
* | Highlight names with .-_Artur Malabarba2014-12-031-1/+1
|/
* Merge branch 'master' into answeringArtur Malabarba2014-12-031-2/+11
|\ | | | | | | | | | | | | Conflicts: sx-question-list.el sx-question-print.el sx-tab.el
| * Merge pull request #124 from vermiculus/buttons-everywhereSean Allred2014-12-021-57/+64
| |\ | | | | | | Buttons everywhere
| * \ Merge pull request #101 from vermiculus/issue-100Artur Malabarba2014-12-011-1/+7
| |\ \ | | | | | | | | Default to post author if post editor is missing
| | * | Reimplement deleted-userArtur Malabarba2014-12-011-1/+7
| | | |
| * | | Fix #57. Set the buffer as unibyte then multibyte again.Artur Malabarba2014-11-291-0/+4
| |/ /
* | / Add an answer buttonArtur Malabarba2014-12-021-0/+3
| |/ |/|
* | Comments are now hidden when you fold the questionArtur Malabarba2014-12-011-27/+27
| |
* | Better positioning of the add comment buttonArtur Malabarba2014-12-011-18/+25
| |
* | question-mod now uses overlays to store the sx--data-here propertyArtur Malabarba2014-12-011-2/+2
| | | | | | | | | | This lets us stack one inside each other (comments inside questions) without overwriting them.
* | Clean 'display in code-blocks. Fixes #117Artur Malabarba2014-11-291-0/+1
| |
* | Code-blocks are buttons. RET to edit, w to copy.Artur Malabarba2014-11-291-8/+32
| |
* | Woops. Fix swallowing one function inside the other.Artur Malabarba2014-11-291-11/+3
| |
* | New "Add a Comment" buttonArtur Malabarba2014-11-291-1/+6
| |
* | Better help-echo in linksArtur Malabarba2014-11-291-3/+3
| |
* | Normalize and improve button help-echo'sArtur Malabarba2014-11-291-6/+0
| |
* | Improve button-copyArtur Malabarba2014-11-291-11/+14
| |
* | Move buttons to sx-button.elArtur Malabarba2014-11-291-23/+4
|/ | | | Also define command to copy button's content under w.
* WhitespaceArtur Malabarba2014-11-291-1/+1
|
* Split sx-question-mode into two files.Artur Malabarba2014-11-291-0/+440
sx-question-print holds all the logic for printing the buffer's content. The original file is reserved for the mode definition, interactive commands, and functions that create and display the bufer.