emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: ardumont <eniotna.t@gmail.com>
To: ardumont <eniotna.t@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: org-indent-mode and erratic checkbox behavior?
Date: Fri, 29 Aug 2014 20:02:27 +0200	[thread overview]
Message-ID: <87fvgfdvik.fsf@gmail.com> (raw)
In-Reply-To: <87k35rec3x.fsf@gmail.com>

Hello,

Just for completeness purpose, if someone else comes across the same
behavior and does the same wrong judgment.

There is an issue opened about it on git-gutter - "with org mode, the
indention is dancing around crazily" - https://github.com/syohex/emacs-git-gutter/issues/24.

Cheers,

ardumont writes:

> Hello again,
>
>> I assume (but I can be wrong, thus feel free to correct me):
>
> And yes I were.
>
>> (I am unable to understand the reasons it does for some and not for
>> others)
>
> Ok, so sorry for the noise. Now I do.
>
> I kept looking and I believe that it's 2 minor modes that do not like to work with each other.
>
> git-gutter and org-indent.
>
> When no modification (git) on the current buffer, everything is good -
> org/org-indent does as expected.
>
> When modifications if present, git-gutter add some information on the
> left border and this messes around somehow with org-indent which then
> does as described in the first part.
>
> In any case, no worry for the org team :D then.
>
> Again, apologies.
>
> Cheers,
> Antoine
>
> ardumont writes:
>
>> Hello,
>>
>> I have a minor visual annoyance with checkboxes and `org-indent-mode`.
>> As I move to next/previous line, headlines stay still (ok) but checkbox keeps going forward and backward (2 blank spaces).
>> (I did not change the default binding C-n/C-p which are still bind to the default next-line/previous-line.)
>>
>> I assume (but I can be wrong, thus feel free to correct me):
>> - it's not correct behavior because it does not do it to every checkbox (I am unable to understand the reasons it does for some and not for others)
>> - it's org-indent minor-mode which does this because when deactivated,
>> this behavior disappears
>>
>> An example can be worth more than trying to explain so I'll do my best to describe what I see (I'll use '|' as the caret) :
>>
>> - On header first character:
>> #+begin_src org
>> | IN-PROGRESS 0.5.6 [0%]
>>   - [ ] backlog
>> #+end_src
>>
>> - C-n - move to the next line in the first character indented in the list
>> #+begin_src org
>> * IN-PROGRESS 0.5.6 [0%]
>>   | [ ] backlog
>> #+end_src
>>
>> - C-n - move to the next line and here the first line `loses` its indentation
>> #+begin_src org
>> * IN-PROGRESS 0.5.6 [0%]
>> - [ ] backlog
>>   | [ ] Update version
>>   - [ ] Fix behavior orgtrello-buffer/goto-end-of-line! When going to end of line in checkbox, we need to do it twice, fix.
>> #+end_src
>>
>> - C-n - move to the next line and here the first previous `loses` its indentation too
>> #+begin_src org
>> * IN-PROGRESS 0.5.6 [0%]
>> - [ ] backlog
>> - [ ] Update version
>>   | [ ] Fix behavior orgtrello-buffer/goto-end-of-line! When going to end of line in checkbox, we need to do it twice, fix.
>> #+end_src
>>
>> - C-p - move to the previous line, the indentation does not change
>> #+begin_src org
>> * IN-PROGRESS 0.5.6 [0%]
>> - [ ] backlog
>> | [ ] Update version
>>   - [ ] Fix behavior orgtrello-buffer/goto-end-of-line! When going to end of line in checkbox, we need to do it twice, fix.
>> #+end_src
>>
>> - C-p - move to the previous line, the indentation does not change but the indentation from the line I came from gets back
>> #+begin_src org
>> * IN-PROGRESS 0.5.6 [0%]
>> | [ ] backlog
>>   - [ ] Update version
>>   - [ ] Fix behavior orgtrello-buffer/goto-end-of-line! When going to end of line in checkbox, we need to do it twice, fix.
>> #+end_src
>>
>> - C-p - move to the previous line, the indentation does not change
>> #+begin_src org
>> | IN-PROGRESS 0.5.6 [0%]
>>   - [ ] backlog
>>   - [ ] Update version
>>   - [ ] Fix behavior orgtrello-buffer/goto-end-of-line! When going to end of line in checkbox, we need to do it twice, fix.
>> #+end_src
>>
>> *Note*
>> - source of the org file: https://github.com/ardumont/org-trello/blob/0.5.6/TODO.org
>> - The same behavior is seen if the caret is elsewhere than the first character, only the position changes but the behavior stays.
>> - org-indent-mode is cool, I'd like to keep it since I like the heading display rendering.
>>
>> Some more information you may wish:
>> - emacs-version: GNU Emacs 24.3.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.23) of 2014-06-06 on localhost
>> - org-version: Org-mode version 8.2.7c (8.2.7c-25-g1faeb4-elpa @ /home/tony/.emacs.d/elpa/org-20140811/)
>> - minor-mode activated in org buffer
>> (M-x describe-mode RET
>>      Enabled minor modes: Anzu Auto-Composition Auto-Compression Auto-Encryption Blink-Cursor Buffer-Pack Column-Number
>>      Company Delete-Selection Diff-Auto-Refine Erc-Spelling Erc-Track Erc-Truncate Eval-Sexp-Fu-Flash File-Name-Shadow
>>      Flx-Ido Font-Lock Git-Pack Global-Anzu Global-Auto-Revert Global-Buffer-Pack Global-Company Global-Diff-Hl
>>      Global-Flycheck Global-Font-Lock Global-Git-Gutter Global-Git-Pack Global-Hl-Line Global-Page-Break-Lines
>>      Global-Theme-Pack Global-Undo-Tree Guide-Key Ido-Ubiquitous Line-Number Magit-Auto-Revert Mouse-Wheel Page-Break-Lines
>>      Popwin Prelude Prelude-Global Projectile Projectile-Global Recentf Repl-Toggle Savehist Shell-Dirtrack
>>      Show-Smartparens-Global Size-Indication Theme-Pack Tooltip Transient-Mark Undo-Tree Volatile-Highlights Which-Function
>>      Winner
>>      )
>>
>> Hoping I provided everything needed.
>> Thanks in advance for your time.
>>
>> Cheers,
>>
>> --
>> @ardumont
>
>
> --
> @ardumont


--
@ardumont

      reply	other threads:[~2014-08-29 18:02 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-29 11:12 org-indent-mode and erratic checkbox behavior? ardumont
2014-08-29 12:04 ` ardumont
2014-08-29 18:02   ` ardumont [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87fvgfdvik.fsf@gmail.com \
    --to=eniotna.t@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).