emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* How do disallow editing of source blocks while inside of org-mode?
@ 2014-06-15 15:59 Grant Rettke
  2014-06-15 17:26 ` Thorsten Jolitz
  0 siblings, 1 reply; 2+ messages in thread
From: Grant Rettke @ 2014-06-15 15:59 UTC (permalink / raw)
  To: emacs-orgmode@gnu.org

Hi,

Working on a large org document with a lot of source blocks, sometimes
I get lazy and modify the
contents of source blocks while in org-mode. Rather than utilize C-',
which takes me to the proper
mode, I just make changes directly. Then, I break stuff. It is my
fault, totally.

What I would like to do, is make it so that source blocks are
immutable when displayed inside of org-mode, and only allow changes
after going to the proper buffer via C-'. This will save lots of
headaches.

Does this already exist?

Where might I set out exploring how to implement such a thing if it
does not? My first thought is to see if an edit is occurring within a
source block that has a language immediately to jump to the buffer
that C-' would have created for me.

Kind regards,

Grant Rettke | AAAS, ACM, ASA, FSF, IEEE, SIAM, Sigma Xi
gcr@wisdomandwonder.com | http://www.wisdomandwonder.com/
“Wisdom begins in wonder.” --Socrates
((λ (x) (x x)) (λ (x) (x x)))
“Life has become immeasurably better since I have been forced to stop
taking it seriously.” --Thompson

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: How do disallow editing of source blocks while inside of org-mode?
  2014-06-15 15:59 How do disallow editing of source blocks while inside of org-mode? Grant Rettke
@ 2014-06-15 17:26 ` Thorsten Jolitz
  0 siblings, 0 replies; 2+ messages in thread
From: Thorsten Jolitz @ 2014-06-15 17:26 UTC (permalink / raw)
  To: emacs-orgmode

Grant Rettke <gcr@wisdomandwonder.com> writes:

Hi,

> Where might I set out exploring how to implement such a thing if it
> does not? My first thought is to see if an edit is occurring within a
> source block that has a language immediately to jump to the buffer
> that C-' would have created for me.

maybe here

,--------------------------------------------
| (defun org-self-insert-command (N)
|   (interactive "p")
|   (org-check-before-invisible-edit 'insert)
|   (cond
|    ((and org-use-speed-commands ...)
|    ((and (org-table-p) ...)))))
`--------------------------------------------

adding a case like 

  ,---------------------------------
  | ((and (org-in-src-block-p) ...))
  `---------------------------------

?

-- 
cheers,
Thorsten

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-06-15 17:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-15 15:59 How do disallow editing of source blocks while inside of org-mode? Grant Rettke
2014-06-15 17:26 ` Thorsten Jolitz

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).