Re: When auto-fill breaks a link into multiple lines, the link is no longer displayed as a link

2020-09-06 Thread Philip Blagoveschensky
Do you mean that I can probably fix it by changing what fonts I use? If so, I'd rather do that than tinker with emacs trying to make a reproducible recipe. -- Regards, Philip Blagoveschensky 4 сент. 2020 г. 19:08:19 Bastien : > Hi Philipp, > > Philip Blagoveschensky writes: &

When auto-fill breaks a link into multiple lines, the link is no longer displayed as a link

2020-07-22 Thread Philip Blagoveschensky
now what causes this? Emacs : GNU Emacs 26.1 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.24.5) of 2019-09-23, modified by Debian Package: Org mode version 9.3.6 (9.3.6-elpa @ /home/username/.emacs.d/elpa/org-9.3.6/) Also, I use org-roam 1.2.0. -- Regards, Philip Blagoveschensky

org-attach-use-inheritance has incorrect :type 'boolean

2020-07-07 Thread Philip Blagoveschensky
This is the definition of org-attach-use-inheritance: (defcustom org-attach-use-inheritance 'selective "Attachment inheritance for the outline. Enabling inheritance for org-attach implies two things. First, that attachment links will look through all parent headings until it finds the linked

Re: Bug: org-babel python with :results value sends function definition with a statement after a for loop to the shell incorrectly [9.3.6 (9.3.6-elpa @ /home/username/.emacs.d/elpa/org-9.3.6/)]

2020-07-06 Thread Philip Blagoveschensky
Hi Ian, >Do you have the same issue if you aren't using a session? If I run the following code block (this time I am using python 3, so there are parens in the print line) #+begin_src python def foobar(): for i in range(5): pass print("hello world") return 3 return foobar

Bug: org-babel python with :results value sends function definition with a statement after a for loop to the shell incorrectly [9.3.6 (9.3.6-elpa @ /home/username/.emacs.d/elpa/org-9.3.6/)]

2020-07-05 Thread Philip Blagoveschensky
Consider the following org-babel block: #+begin_src python :session bug_report def foobar(): for i in range(5): pass print "hello world" foobar() #+end_src When I run it, this is what I see in the *bug_report* buffer: def foobar(): ... for i in range(5): ... p

Bug: org-babel python with :results value sends function definition with a statement after a for loop to the shell incorrectly [9.3.6 (9.3.6-elpa @ /home/username/.emacs.d/elpa/org-9.3.6/)]

2020-07-01 Thread Philip Blagoveschensky
Consider the following org-babel block: #+begin_src python :session bug_report def foobar(): for i in range(5): pass print "hello world" foobar() #+end_src When I run it, this is what I see in the *bug_report* buffer: def foobar(): ... for i in range(5): ... p