[O] bug#25132: 26.0.50; emacs hangs when loading org file with python source blocks

2017-01-23 Thread npostavs
Dmitry Gutov writes: > On 20.01.2017 03:52, npost...@users.sourceforge.net wrote: > >> My feeling is that inhibit-modification-hooks should usually be buffer >> local anyway. > > Maybe you're right. > > inhibit-read-only, bound nearby, seems to be in the same situation. > >>> If we are not, why n

Re: [O] VM for org-based reproducible environment?

2017-01-23 Thread John Kitchin
I looked briefly into Docker, but I did not make any progress on it. Matt Price writes: > I'd like to provide a way for people to copy my course materials in the > easiest possible way. At present my export & grading processes rely on some > customization of various tools, mostly emacs-based. So

[O] VM for org-based reproducible environment?

2017-01-23 Thread Matt Price
I'd like to provide a way for people to copy my course materials in the easiest possible way. At present my export & grading processes rely on some customization of various tools, mostly emacs-based. So I'm thinking the easiest thing might be fore me to define a virtual machine, maybe docker-based,

Re: [O] run a function during capture

2017-01-23 Thread Nick Dokos
Alan Schmitt writes: > ... > - I added a hook to org-capture-after-finalize-hook ^ > #+begin_src emacs-lisp > (defun as/do-org-board-dl-hook () > (when (equal (buffer-name) (concat "CAPTURE-" as/org-board-capture-file)) > (org-board-archive))) >

Re: [O] Is it possible to "properly" indent inside latex fragments?

2017-01-23 Thread Charles C. Berry
On Mon, 23 Jan 2017, alain.coch...@unistra.fr wrote: Hello. This is what I obtain if I type each line followed by and then in an org file: * foo \begin{displaymath} \begin{split} a &= b \\ &+c \end{split} \end{displaymath} If I highlight everything and use 'M-x indent-region' or 'M-x

[O] Is it possible to "properly" indent inside latex fragments?

2017-01-23 Thread Alain . Cochard
Hello. This is what I obtain if I type each line followed by and then in an org file: * foo \begin{displaymath} \begin{split} a &= b \\ &+c \end{split} \end{displaymath} If I highlight everything and use 'M-x indent-region' or 'M-x org-indent-region', it does not change. Inst

[O] raising frame on capture hack

2017-01-23 Thread Alan Schmitt
Hello, I'm using the following hack to raise the emacs frame when doing a capture from outside emacs: #+begin_src emacs-lisp (defun as/raise-frame () (select-frame-set-input-focus (selected-frame))) (add-hook 'org-capture-mode-hook 'as/raise-frame) #+end_src Is there a better way? Than

Re: [O] run a function during capture

2017-01-23 Thread Alan Schmitt
On 2017-01-20 15:25, Xebar Saram writes: > Alan: once you have your org-board and capture setting finalized , i > would be very interested to get more details on your setup and work > flow, this looks really interesting! Here is how I did it: - on Firefox side, I installed Org-capture for Firefo

Re: [O] run a function during capture

2017-01-23 Thread Alan Schmitt
On 2017-01-19 12:11, Nick Dokos writes: > Alan Schmitt writes: > >> Hello, >> >> It is possible to run a function at the end of capture? I would like to >> call org-board-archive (that downloads a web page according to some >> properties) before finishing the capture? >> > > There are three hook

[O] Mobile org

2017-01-23 Thread Paul Schlesinger
For about two weeks since getting a new ipad I have not been able to re-install mobile org. After setting up dropbox I can log in from MobileOrg but the target directories are not created and they are not use if I create them manually. This seems to me to be resulting from a change in dropbox. Perh

Re: [O] Table formula from code block

2017-01-23 Thread Michael Welle
Hello, I think there are several problems, starting with BEGIN_SRC sh and some more. But fixing them doesn't bring success. I even have trouble to get a minimal example to work: #+NAME: foo #+BEGIN_SRC emacs-lisp (+ 4 4) #+END_SRC | bar | foo| |+| | 42 | #ERROR | #+TB