Re: [O] How to utilize the vc package inside of the edit source block buffer?

2014-09-27 Thread Grant Rettke
Thank you Aaron and Jonathan. Here is what I did: (defadvice vc-next-action (before vc-next-action-in-org-src-block last activate) If in org source block, exit it. (when (condition-case nil (org-src-in-org-buffer) (error nil)) (org-edit-src-exit))) I had trouble

[O] How to utilize the vc package inside of the edit source block buffer?

2014-09-23 Thread Grant Rettke
Good afternoon, The ability to org-edit-special inside of source block is truly priceless. There is a delightful workflow to be found with approach. It has got me spending more and more time in the edit buffer though, wanting to utilize vc-next-action to initiate a commit. This is not possible

Re: [O] How to utilize the vc package inside of the edit source block buffer?

2014-09-23 Thread Aaron Ecay
Hi Grant, 2014ko irailak 23an, Grant Rettke-ek idatzi zuen: Good afternoon, The ability to org-edit-special inside of source block is truly priceless. There is a delightful workflow to be found with approach. It has got me spending more and more time in the edit buffer though,

Re: [O] How to utilize the vc package inside of the edit source block buffer?

2014-09-23 Thread Jonathan Leech-Pepin
Hello, On 23 September 2014 14:19, Aaron Ecay aarone...@gmail.com wrote: Hi Grant, 2014ko irailak 23an, Grant Rettke-ek idatzi zuen: Good afternoon, The ability to org-edit-special inside of source block is truly priceless. There is a delightful workflow to be found with