bug#50514: 28.0.50; org inline call to python src block req C-g to break

2022-08-27 Thread Barton, Mark
On Aug 27, 2022, at 6:30 PM, Ihor Radchenko mailto:yanta...@gmail.com>> wrote: * lisp/ob-python.el (org-babel-python-initiate-session-by-key): Do not rely on 10ms delay to initialize Python. Wait until python process is initialized using `org-babel-comint-wait-for-output'. ---

bug#50514: 28.0.50; org inline call to python src block req C-g to break

2022-08-27 Thread Barton, Mark
I will work on getting more details this weekend. It looked like the buffer passed to org-babel-comint-wait-for-output was missing the "earmuffs". I tried adding the earmuffs with the org function for that but although I got passed that error, I messed up my python session and the following

bug#50514: 28.0.50; org inline call to python src block req C-g to break

2022-08-27 Thread Barton, Mark
On Aug 27, 2022, at 7:11 AM, Ihor Radchenko mailto:yanta...@gmail.com>> wrote: --- lisp/ob-python.el | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/ob-python.el b/lisp/ob-python.el index 932aca08e..2ad907bd8 100644 --- a/lisp/ob-python.el +++

Re: Code blocks and quotes export style

2022-03-13 Thread Barton, Mark
I manually check the pdf to see if it fits and use a code formatter to get the line widths shorter. I use blacken for python and sqlformat for SQL within Emacs. Even then I still hit limits where I recently changed to font size to small for the code blocks. I use minted for syntax highlighting

Re: org-mode-map binds [tab]

2021-07-11 Thread Barton, Mark
With Emacs compiled from master, after Nicolas Goaziou's fix to remove the binding, my tab key was no longer bound to org-cycle, but instead to outline-cycle from outline.el If I comment out line 185 in outline.el then TAB will bind to org-cycle. Does outline.el need to be fixed too?