I don't know when this started, but recently I've seen the following annoying
behavior from M-RET in org files.

Here is a minimal file to demonstrate what I'm seeing lately:

============================== demo.org ==============================
* First Header
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.

* Second Header
=======================================================================

When the headings are completely folded, I see the following, as expected:

============================== demo.org ==============================
 * First Header...
^* Second Header
=======================================================================

With my cursor on the ^, I hit M-RET to insert a new heading between "First
Header" and "Second Header", and I get the following:

=======================================================================

When the headings are completely folded, I see the following, as expected:

============================== demo.org ==============================
 * First Header...* ^
 * Second Header
=======================================================================

In other words, the new heading is being placed after the elipses for the
folded content of the first heading.

Naturally, I expect the following:

============================== demo.org ==============================
 * First Header...
 * ^
 * Second Header
=======================================================================

I'm trying to determine if this is an odd intereaction from some of my
settings, or if it is a bug in the org code.

It does the same whether I have org-indent-mode toggled on or off.

Does anyone else see this behavior?

My emacs-version is:
GNU Emacs 24.4.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.23) of 2014-10-28 
on micah

Here are the main org settings from my init file:

,----[ init.el ]
| #+BEGIN_SRC emacs-lisp :tangle yes
|   (setq org-directory (expand-file-name "~/Dropbox/Projects/"))
|   (setq org-agenda-files (concat org-directory "agenda-files"))
|   (setq
|      org-attach-directory user-data-dir
|      org-agenda-include-diary t
|      org-agenda-span 3
|      org-todo-keywords '((sequence "TODO(t)" "WAIT(w)" "|" "DONE(d)" 
"CNCL(x)"))
|      org-todo-interpretation 'sequence
|      org-return-follows-link t
|      org-cycle-separator-lines 2
|      org-completion-use-ido t
|      org-refile-use-outline-path 'file
|      org-outline-path-complete-in-steps nil
|      org-refile-allow-creating-parent-nodes t)
| #+END_SRC
`----

And here is what I have set in my custom.el files:

,----[ custom.el ]
| #+BEGIN_SRC emacs-lisp
|  '(org-agenda-span (quote day))
|  '(org-blank-before-new-entry (quote ((heading) (plain-list-item . auto))))
|  '(org-confirm-babel-evaluate nil)
|  '(org-entities-ascii-explanatory t)
|  '(org-export-babel-evaluate nil)
|  '(org-file-apps
|    (quote
|     ((auto-mode . emacs)
|      ("\\.mm\\'" . default)
|      ("\\.x?html?\\'" . default)
|      ("\\.pdf\\'" . default)
|      ("ods" . "oocalc"))))
|  '(org-footnote-fill-after-inline-note-extraction t)
|  '(org-format-latex-options
|    (quote
|     (:foreground "OliveDrab" :background default :scale 1.2 :html-foreground 
"Black" :html-background "Transparent" :html-scale 1.0 :matchers
|                  ("begin" "$1" "$" "$$" "\\(" "\\["))))
|  '(org-highlight-latex-and-related (quote (latex)))
|  '(org-icalendar-include-todo t)
|  '(org-icalendar-use-plain-timestamp t)
|  '(org-latex-pdf-process
|    (quote
|     ("/usr/bin/pdflatex -interaction nonstopmode -output-directory %o %f" 
"/usr/bin/pdflatex -interaction nonstopmode -output-directory %o %f" 
"/usr/bin/pdflatex -interaction nonstopmode -output-directory %o %f")))
|  '(org-list-demote-modify-bullet (quote (("+" . "-") ("-" . "*") ("*" . 
"+"))))
|  '(org-list-indent-offset 2)
|  '(org-log-refile (quote time))
|  '(org-modules
|    (quote
|     (org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-protocol 
org-vm org-wl org-w3m)))
|  '(org-outline-path-complete-in-steps nil)
|  '(org-pretty-entities-include-sub-superscripts nil)
|  '(org-refile-targets (quote ((org-agenda-files :maxlevel . 1))))
|  '(org-refile-use-outline-path (quote file))
|  '(org-special-ctrl-a/e t)
|  '(org-special-ctrl-k t)
|  '(org-src-fontify-natively t)
|  '(org-src-tab-acts-natively t)
|  '(org-startup-align-all-tables t)
|  '(org-startup-folded t)
|  '(org-table-number-regexp
|    "^\\([<>]?\\(\\$ 
*\\)?[-+^.,0-9]*[0-9][-+^.0-9eEdDx()%:]*\\|\\(0[xX]\\)[0-9a-fA-F]+\\|nan\\)$")
|  '(org-time-stamp-custom-formats (quote ("<%b %d, %Y (%a)>" . "<%b %d, %Y 
(%a) @ %H:%M>")))
| #+END_SRC
`----

I've tried tweaking a number of these settings with no luck.

Any ideas about what is going wrong here?

Dan Doherty


Reply via email to