summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-22Fix issue with o/O not indenting.Somelauw
For some reason combinding evil-open-below with evil-insert undoes the indentation.
2017-10-15Improve and simplify o/O functions.Somelauw
2017-10-07Implement https://github.com/Somelauw/evil-org-mode/issues/22Somelauw
2017-09-17Make o on a checkbox item create a new checkbox item.Somelauw
Before this it created a regular item. Fixes https://github.com/Somelauw/evil-org-mode/issues/19
2017-09-17Fix some markup in documentationSomelauw
2017-09-16Declare rsi bindings obsolete againSomelauw
2017-09-11Undo deprecate rsi bindingsSomelauw
See this issue https://github.com/Somelauw/evil-org-mode/issues/17
2017-09-09Add a few regression testsSomelauw
2017-09-09Remove evil-org-recompute-clocksSomelauw
2017-09-09Merge branch 'master' into developSomelauw
2017-09-09Merge pull request #16 from smile13241324/restoreAdditionalBindingsInNormalModeSomelauw
Restore additional-bindings in normal mode when evil-org-additional-insert is true
2017-09-06Restore additional-bindings in normal modesmile13241324
When evil-org-use-additional-insert was true the documentation said it should activate "additional bindings" for "insert" mode in addition to "normal" and "visual" mode. However due to a misplaced quote the bindings for "normal" mode were omitted which is what I have fixed.
2017-09-02Add variable `evil-org-retain-visual-state-on-shift`.Somelauw
2017-08-29Replace bindings to lambdas by macrosSomelauw
Deprecate evil-org-bol-call and evil-org-eol-call Add evil-org-define-bol-command and evil-org-define-eol-command This looks cleaner and might improve interaction with https://github.com/gabesoft/evil-mc
2017-08-28Allow `<` and `>` to move columns in tablesSomelauw
2017-08-26Make I and A respect `org-special-ctrl-a/e`Somelauw
2017-08-26Fix x and X bindingsSomelauw
They were bound in motion state instead of normal state
2017-08-25CleanupSomelauw
- Remove 'leader from evil-org-keytheme variable - Put insertion functions after motions - Deprecate RSI keytheme (I'm not aware of anyone using it. If so, feel free to open an issue)
2017-08-25Make A and I ignore leading stars, tags and ellipsesSomelauw
2017-08-08Add type boolean to evil-org-use-additional-insertSomelauw
2017-08-08Explain how to fix `TAB` in terminal EmacsSomelauw
Cherry-picked from NicholasTD07-patch-1 Author: Nicholas T <NicholasTD07@users.noreply.github.com> Date: Sun Aug 6 14:08:34 2017 +1000 Explain how to fix `TAB` not working as expected `TAB` won't work as expected in some cases. All you have to do is disable `evil-want-C-i-jump`. Author: Somelauw <Somelauw> Date: Tue Aug 8 12:59:43 2017 +0200 Add heading "common issues" above tab-explanation
2017-08-02Vim keys for saving when editing org-table formulasSomelauw
2017-07-24Update example config with new ideasSomelauw
2017-07-24Deprecate evil-org-recompute-clocksSomelauw
2017-07-20Allow $ to jump back-and-forth in evil when org-special-ctrl-a/e is t.Somelauw
Regardless of what evil-move-beyond-eol and evil-move-cursor-back are set to.
2017-07-19Fix screw-up of C-S-return bindingSomelauw
2017-07-18Move org-beginning-of-line from ^ to 0.Somelauw
2017-07-16Improve and document functions without default bindingSomelauw
2017-07-16Correct check for evil-disable-insert-state-bindingsSomelauw
2017-07-10Allow evil-org-{eol/bol}-call to pass optional argumentsSomelauw
2017-07-03Make evil-org-{above/below} (o/O) non-special on some org elements.Somelauw
Based on pull request #10 by @nochiel. Made more general and doesn't require modifying evil-org-special-o/O variable.
2017-06-29Merge pull request #9 from ZarsBranchkin/patch-1Somelauw
Fix org-insert-item cursor position
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-12Make key bindings stand out moreSomelauw
By using =mark-up=.
2017-06-12Improve documentation in keythemes.orgSomelauw
- More use of markup. - Table cells use lowercase letters. - More explanation on what the different text objects do Also add worf to "See Also" in README.md
2017-06-11Make o and O customizableSomelauw
2017-06-11Merge pull request #5 from duianto/patch-1Somelauw
README.org: evil-mode link: bitbucket to github
2017-06-10README.org: evil-mode link: bitbucket to githubduianto
The evil repository has migrated from bitbucket to github.
2017-06-10Merge pull request #4 from GuiltyDolphin/patch-1Somelauw
Correct name of evil-org-mode in See Also
2017-06-10Correct name of evil-org-mode in See AlsoBen Moon
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-06-01Add information to changelogSomelauw
2017-05-30Explain why ^ and $ are bound in doc/keythemes.orgSomelauw
2017-05-29Fix #1Somelauw
2017-05-29Update key binding descriptionsSomelauw