aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-02Update copyright yearsKyle Meyer
2016-06-04Update header URLKyle Meyer
2016-03-08Bump versionKyle Meyer
2016-03-08org-link-edit--get-link-data: Unescape link textKyle Meyer
org-make-link-string will escape the link again when it's reinserted.
2015-12-24Enable lexical bindingKyle Meyer
2015-12-24Makefile: SimplifyKyle Meyer
2015-11-17README.md: Mention contribKyle Meyer
2015-08-08Bump versionKyle Meyer
2015-08-08slurp: Reduce new line stretches to single spaceKyle Meyer
... instead of replacing each new line with a space.
2015-08-08Clean up some spacing in testsKyle Meyer
2015-03-05Recompile before testsKyle Meyer
2015-02-14Don't use words as unit for slurping and barfingKyle Meyer
Using words as the unit for slurping can give confusing results. For example, slurping forward with The [http://orgmode.org] Org-mode site results in The [[http://orgmode.org][Org]]-mode site This is somewhat inconvenient because the intended slurp here is most likely 'Org-mode'. However, given that the command clearly says that it works at the level of words, this shouldn't be too surprising. The problem is that, unless the user is displaying the full link (e.g., using org-toggle-link-display), the entire text 'Org-mode' is highlighted as though it's part of the link. If the user then tried to slurp again to get 'site', '-mode' would actually be slurped, and it would appear like nothing happened. Instead of words, make blocks of non-whitespace characters, referred to as blobs, the unit for slurping and barfing. When slurping forward, don't consider trailing punctuation as part of a blob.
2015-02-14split-{first,last}-words: Use Org syntax tableKyle Meyer
Fix the test that should have caught this.
2015-02-14Add tests for round trip exceptionsKyle Meyer
2015-02-14Trim only whitespace from slurped stringsKyle Meyer
2015-02-14backward-slurp-word: Fix whitespace checkKyle Meyer
Don't fail when there is no description and the slurped word isn't separated by a non-word character.
2015-02-14Makefile: Add autoload file to default ruleKyle Meyer
2015-02-14Correct commentKyle Meyer
2015-02-13Revise commentaryKyle Meyer
2015-02-12Improve split-{first,last}-words docstringsKyle Meyer
2015-02-12Makefile: Fix autoloads rule.Kyle Meyer
- Actually save the autoloads file. - Prevent backup file from being generated.
2015-02-12Fix typo in commentKyle Meyer
2015-02-12SlurpKyle Meyer