Grant Rettke <g...@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