summaryrefslogtreecommitdiff
path: root/evil-org.el
AgeCommit message (Collapse)Author
2017-06-29Fix org-insert-item cursor positionZarsBranchkin
When a new line is created with `evil-org-open-below` or `evil-org-open-above` in a description list, the cursor is placed incorrectly. This can be fixed by using `evil-insert` instead of `evil-append`. Example of what happens(`|` denotes the cursor): `* |::` And what is expected: `* | ::`
2017-06-25Make ar, iR, aR linewise by default.Somelauw
See issue #6 for relevant discussion
2017-06-22Use cl-case instead of caseSomelauw
Fixes #8
2017-06-11Make o and O customizableSomelauw
2017-06-06Ignore o and O when on whitespace below an item or tableSomelauw
Fixes #3
2017-06-02Complete overhaul of text objectsSomelauw
See doc/changelog.org for details
2017-06-02Remove optional leader keysSomelauw
2017-06-01No longer add an automatic hookSomelauw
2017-05-29Fix #1Somelauw
2017-05-14Change repo name from evil-org to evil-org-modeSomelauw
2017-05-08Set minimum evil version to 1.0Somelauw
2017-05-07Update documentationSomelauw
2017-05-07Change prefix meaning of evil-org-insert-subheading/subtodoSomelauw
The old meaning is to insert a heading and to copy the heading text n - 1 times on the lines below that heading. Instead it now follows the same prefix argument logic as org-insert-heading. If one prefix argument is given, the insertion will be done at the end of the current subtree.
2017-05-05Make argument to evil-org-set-key-theme optionalSomelauw
If called with no arguments, evil-org-key-theme is used
2017-05-03Don't activate key theme too earlySomelauw
2017-05-02Require Emacs 24.4 or higherSomelauw
According to package-lint
2017-05-02Get rid of dash dependencySomelauw
2017-05-02let-alist is needed during compile timeSomelauw
2017-05-02Add require statementsSomelauw
Set minimum org version to 8, because I want to use org-element
2017-04-30add dashes in headerSomelauw
2017-04-30Fix package headerSomelauw
Which accidentally broke in an earlier commit
2017-04-30Introduce evil-org-key-theme variable for easier customizationSomelauw
2017-04-28Add variable declarations to get rid of warningsSomelauw
2017-04-28Make evil-leader optionalSomelauw
By removing it from Package-Requires header
2017-04-28Rename evil-org-improved back to evil-orgSomelauw
2017-04-10Rename evil-org.el to evil-org-improved.elSomelauw
2017-04-10Update documentation in code and READMESomelauw
2017-04-09Update motions and add new motion gHSomelauw
2017-04-09Simplify promotion and demotion operatorsSomelauw
2017-04-08Make evil-org-open-links accept prefix argumentSomelauw
If a prefix argument is given, links should be opened in incognito mode
2017-04-08Undo commit 48145ca398411192045814bbb7663c0e95bd413eSomelauw
Don't put M-o and M-t in additional bindings, because this is inconvenient for Dvorak users.
2017-04-03Make shift-right/left operators smarter when dealing with item lists.Somelauw
2017-03-21Make evil-org-shift operators fall back on standard evil operatorsSomelauw
2017-03-21Better fix for issue #4Somelauw
Undoes commit 44ab2da69d67cc0346f737495031bfd96c51e0d2
2017-03-18Use the correct way to bind C-S bindingsSomelauw
2017-03-18Don't automatically enable undefined key theme shift2 yetSomelauw
2017-03-14Move M-o and M-t to additional bindings.Somelauw
Deprecate key theme 'heading'
2017-03-14Option to enable bindings in insert modeSomelauw
2017-03-14Don't automatically include navigation bindingsSomelauw
2017-03-14Deprecate leader bindingsSomelauw
2017-03-13Give tables precedence when in an itemSomelauw
2017-03-13Replace lambdas by commandsSomelauw
2017-03-13Update motions declarationsSomelauw
2017-03-07Make round brackets fall back on evil commandsSomelauw
Fixes issue #5
2017-03-01Improve paragraph handlingSomelauw
Fixes issue #3
2017-03-01Improve styleSomelauw
2017-03-01Split gh, gj, gk, gl bindings off in a separate key binding themeSomelauw
Enable it by default for backwards compatibility
2017-02-28Make promote/demote-operator work on itemsSomelauw
Resolves #4
2017-02-25Fix evil-org-open-above/below from producing extra whitespaceSomelauw
- item1 - item2 (pointer is on this line) - item3 Pressing o produced superfluous whitespace before this commit
2017-02-25Add RSI key themeSomelauw