m1’ to refer to the
> value ‘10’. Also, if you assign a formula to a names field, it is
> stored as ‘$name = ...’.
However with 'C-u C-c =' in a named field, the prompt doesn't
include the '$' for the name and the formula then defined doesn't work.
--
Julien Cubizolles
In some files, accented characters are not displayed correctly (encoding
with utf-8 is not enabled by default, I must specify it manually each time)
Strangely enough, this bug seems to be NOT RELATED with my personal
emacs settings.
Looking for the origin of the bug, I deleted my init.el file and
hon3
from idle_time import IdleMonitor
monitor = IdleMonitor.get_monitor()
print(f"{1000*monitor.get_idle_time():.0f}")
--8<---cut here---end--->8---
--
Julien Cubizolles
@@ -1222,6 +1246,8 @@ This routine returns a floating point number."
(org-mac-idle-seconds))
((and (eq window-system 'x) org-x11idle-exists-p)
(org-x11-idle-seconds))
+ ((and (eq window-system 'pgtk) org-pgtkidle-exists-p)
+(org-pgtk-idle-seconds))
(t
(org-emacs-idle-seconds
> Please, make sure that the pgtk option works on Wayland as well (or not,
> but we will then need to wait until someone tests the patch on Wayland).
It's working in Wayland, with a pgtk build.
--
Julien Cubizolles
> Thank you both for reporting!
Thank you for fixing!
--
[Julien Palard](https://mdk.fr)
42
Which looks the same to my eyes behave cleanly by just updating the single line.
Is that a bug or did I misunderstood something?
I'm using Org 9.5.5 on emacs 28.2 on Debian.
--
[Julien Palard](https://mdk.fr)
tage that it works
both in a X11 and in a wayland session (provided your
org-clock-x11idle-program-name works in both, mine does).
There is another use of window-sytem in the org-mode source, namely in
org-get-x-clipboard in org-compat.el, but I don't know if it's safe to
make the switch there.
--
Julien Cubizolles
er service actually), and
org-x11idle-exists-p relies on (eq window-system 'x) which is somehow
not set in the terminal when the daemon.
For the time being, it manually set org-x11idle-exists-p to true but
shouldn't all this tests on (eq-window-system) be run each time a new
frame is
art->8---
# -*- buffer-auto-save-file-name: nil -*-
* Test
** Hello
--8<---cut here---end--->8---
--
Julien Cubizolles
-start->8---
#!/usr/bin/env python3
from idle_time import IdleMonitor
monitor = IdleMonitor.get_monitor()
print(f"{1000*monitor.get_idle_time():.0f}")
--8<---cut here---end--->8---
--
Julien Cubizolles
than advising
org-revert-all-org-buffers?
--
Julien Cubizolles
the conference type, but
I don't know if that has anything to do with it. I hope I have not missed
anything obvious.
Thank you very much for maintaining org.
-Julien
Emacs : GNU Emacs 27.2 (build 1, x86_64-apple-darwin20.6.0, X toolkit,
cairo version 1.16.0, Xaw scroll bars)
of 2021-
Julien Cubizolles writes:
> Tim Cross writes:
>
>> Julien Cubizolles writes:
>>
>>> I'm using a custom python program to display x11 idle time. I've set
>>> org-clock-x11idle-program-name accordingly but org-x11idle-exists-p is
>>> still
Tim Cross writes:
> Julien Cubizolles writes:
>
>> I'm using a custom python program to display x11 idle time. I've set
>> org-clock-x11idle-program-name accordingly but org-x11idle-exists-p is
>> still nil. I'm guessing it's defvar'ed in org-clo
1idle-exists-p afterwards indeed sets it to t.
I could do (setq org-x11idle-exists-p t) but there must be a better way
to handle the definition of a new org-clock-x11idle-program-name.
--
Julien Cubizolles
oving the older ones or better, removing the entries older than some
date. Is there some variable to that effect ?
--
Julien Cubizolles
On Sun, Sep 06 2020, Bastien wrote:
Hi everyone,
> I'm copying Julien, the original author of org-contacts.el, to check
> if he plans to maintain org-contacts.el further and if he's okay for
> someone to take over.
I don't plan to do anything, feel free to take over!
C
le be reintroduced in org so as not to
break this very useful package ?
Julien.
leOrg, a free software for iPhone and
$ curl -i mobileorg.ncogni.to
curl: (6) Could not resolve host: mobileorg.ncogni.to
Bests,
--
Julien Palard
https://mdk.fr
Nicolas Goaziou writes:
> Hello,
>
> Julien Cubizolles writes:
>
>> I have some long tables with wide cells that are not easy to scroll
>> through. It would be convenient to fold some columns or rows. Has
>> someone managed it ?
>
> This is `C-c ' i
I have some long tables with wide cells that are not easy to scroll
through. It would be convenient to fold some columns or rows. Has
someone managed it ?
Julien.
Nicolas Goaziou writes:
> Hello,
>
> Julien Cubizolles writes:
> I don't think it is related. Maybe `org-export-allow-bind-keywords' is
> nil in your async configuration.
You're right, it was nil. When it is set, #+BIND: works as
expected. Thanks.
Julien.
and #+BIND: should have the same behaviour
whereas one is using async export or not.
Julien.
Eric S Fraga writes:
> On Sunday, 25 Mar 2018 at 09:52, Julien Cubizolles wrote:
>> Found the cause of the problem, my default configuration exports in
>> async mode, so this variable should be set in
>> org-export-async-init.el.
>>
>> Is there a way to have a va
Eric S Fraga writes:
> On Saturday, 24 Mar 2018 at 16:20, Julien Cubizolles wrote:
>> I'd like all inline images resized during beamer and latex export. I
>> tried setting org-latex-image-default-width to ".3\\linewidth" but after
>> export the latex file
I'd like all inline images resized during beamer and latex export. I
tried setting org-latex-image-default-width to ".3\\linewidth" but after
export the latex file still uses the default .9\linewidth default. See
the following examples.
Julien.
orgmode file:
--8<-
Eric S Fraga writes:
> On Tuesday, 5 Sep 2017 at 11:41, Julien Cubizolles wrote:
>> Does orgmode allow to pass some properties to a list that could be used
>> to alter its format ?
>
> Try maybe:
>
> #+attr_latex: :environment plickers
> 1. first
> 2. second
&g
Plickers
:END:
1. 1st item
2. 2nd item
--8<---cut here---end--->8---
Does orgmode allow to pass some properties to a list that could be used
to alter its format ?
Julien.
but also the "Contenu" even though it
> doesn't have a TODO keyword.
>
> The offending commit is:
>
> commit 942b6267a09e167ad3a546e83205601aa5c0704e
> Author: Nicolas Goaziou
> Date: Tue Apr 18 11:55:27 2017 +0200
> org-agenda: `tags-todo' command type includes DONE keywords
>
> Julien.
da called by "org-agenda w t" displays the "Cours
électrocinétique" (as it should) but also the "Contenu" even though it
doesn't have a TODO keyword.
The offending commit is:
commit 942b6267a09e167ad3a546e83205601aa5c0704e
Author: Nicolas Goaziou
Date: Tue Apr 18 11:55:27 2017 +0200
org-agenda: `tags-todo' command type includes DONE keywords
Julien.
Kyle Meyer writes:
> Julien Cubizolles writes:
>
>> Julien Cubizolles writes:
>>
>>> Kyle Meyer writes:
>>>
>>>
>>>> Since you have the git repo set up and have a good/bad range, you can use
>>>> git bisect to find the off
Julien Cubizolles writes:
> Kyle Meyer writes:
>
>
>> Since you have the git repo set up and have a good/bad range, you can use
>> git bisect to find the offending commit.
I finally found the offending commit,
it's commit 4f578a3f7fe193229adc239c93d6983bcc030d41 org
release_9.0.9 @
/usr/share/emacs/26.0.50/lisp/org/)) doesn't exhibit it.
What is the right way to load the org-mode from the git repo instead of
the one already installed on the system ?
Julien.
Adam Porter writes:
> Julien Cubizolles writes:
>
>> Got it: the problem occurs when trying to clear the TODO state of
>> several entries through a bulk action:
>>
>> * mark several entries
>>
>> * "B t" doesn't offer to clear the T
Adam Porter writes:
> Julien Cubizolles writes:
>
>> In an agenda buffer, C-u B d should clear the deadline of the entries
>> marked the way C-u does on a single entry. I think it's what it used to
>> do some time ago. Instead, I get:
>>
>> org-agen
Julien Cubizolles writes:
> Adam Porter writes:
>
>> Julien Cubizolles writes:
>>
>>> Choosing "space" when changing the TODO state of an entry with C-c C-t
>>> in an org buffer clears the TODO state. However it doesn't work in the
>>&g
tion: 4
--8<---cut here---end--->8---
Julien.
Nicolas Goaziou writes:
> Hello,
>
> Julien Cubizolles writes:
>
>> Did I miss an important change to the way org-agenda-files is to be
>> used ?
>
> It is probably related to the change in `org-agenda-time-grid'. See new
> docstring.
I've looked int
ing to switch to the day view gives the following message
--8<---cut here---start->8---
org-agenda-check-type: No Org agenda currently displayed
--8<---cut here---end--->8---
Did I miss an important change to the way org-agenda-files is to be
used ?
Julien.
Adam Porter writes:
> Julien Cubizolles writes:
>
>> helm-org-agenda-files-headings, used with helm-org-format-outline-path
>> is very convenient for choosing entries when refiling one individual
>> entry. I couldn't get it to refile *several* entries at once.
&g
Adam Porter writes:
> Julien Cubizolles writes:
>
>> Choosing "space" when changing the TODO state of an entry with C-c C-t
>> in an org buffer clears the TODO state. However it doesn't work in the
>> agenda view.
>
> Hi Julien,
>
> Just trie
Adam Porter writes:
> Julien Cubizolles writes:
>
>> Choosing "space" when changing the TODO state of an entry with C-c C-t
>> in an org buffer clears the TODO state. However it doesn't work in the
>> agenda view.
>
> Hi Julien,
>
> Just trie
Choosing "space" when changing the TODO state of an entry with C-c C-t
in an org buffer clears the TODO state. However it doesn't work in the
agenda view. How can I clear the TODO state in agenda view, possibly in
bulk-mode ?
Julien.
efile
current or marked heading to selection C-c w" action from
helm-org-agenda-files-headings act on the "m" marked entries in the
agenda mode.
Julien.
Rasmus writes:
> I am not sure Mobileorg for android is still developed.
According to
https://github.com/matburt/mobileorg-android/commit/646cec8c82c77b02134b0fc01407859e1d31fa7d,
it's not anymore.
Nicolas Goaziou writes:
> Hello,
>
> Julien Cubizolles writes:
>
>> I'm using symbolic links in a directory managed by
>> org-publish-attachment. As of a few weeks ago, org-publish-attachment
>> doesn't upload the files linked to to the ftp server like
>8---
Copying filename.pdf to /ftp:login@ftpserver:/dir/...done
--8<---cut here---end--->8---
but the file isn't uploaded.
A regular file is correctly uploaded to the same ftp server by
org-publish-attachment.
Julien.
---cut here---start->8---
(add-to-list 'load-path "~/git-repositories/org-mode/lisp")
(add-to-list 'load-path "~/git-repositories/org-mode/contrib/lisp")
(require 'org)
(require 'ox)
--8<---cut here---en
When an export from org to pdf fails, the error message refers to a *Org
PDF LaTeX Output* buffer that doesn't seem to have been created on my
setup. Is it an old message from a previous behaviour long gone ?
Julien.
ore, could you please provide a code
sample ?
Regards,
Julien.
hot to use this new feature. How do you use it ?
Julien.
Nicolas Goaziou writes:
> Hello,
>
> Julien Cubizolles writes:
>
>> I'm still experiencing this problem with the following example
>>
>> #+BEGIN_SRC elisp
>> (add-to-list 'load-path "~/git-repositories/org-mode/lisp")
>> (ad
Nicolas Goaziou writes:
> Would the following patch solve the issue?
I'm still experiencing this problem with the following example
--8<---cut here---start->8---
#+BEGIN_SRC elisp
(add-to-list 'load-path "~/git-repositories/org-mode/lisp")
(add-to-list '
e-match "EXPORT \\1" nil nil nil 1)
#+END_SRC
#+RESULTS:
: org-repair-export-blocks
#+BEGIN_LATEX
\begin{equation*}
P_{ext} = P_0
\end{equation*}
#+END_LATEX
--8<---cut here---end--->8---
After evaluating the elisp source block, org-repair-export-blocks
doesn't repair the LATEX block. However, (require 'org-ref) is commented
out, org-repair-export-blocks does its job.
Julien.
Julien Cubizolles writes:
> John Kitchin writes:
>
>> I found a (save-buffer) in the bibtex entry clean functions and took
>> that out. I think it solves this problem.
>
> It's working fine now, thanks.
Actually it seems to be broken again:
--8<---
Eric S Fraga writes:
> On Wednesday, 27 Apr 2016 at 19:23, Julien Cubizolles wrote:
>> also, running:
>>
>> keychain --eval --agents ssh,gpg id_rsa MYGPGKEY
>>
>> in a non login shell.
>
> The only thing I can think of is that maybe you have not instal
Eric S Fraga writes:
> On Wednesday, 27 Apr 2016 at 16:24, Julien Cubizolles wrote:
>> there must be something wrong with my setup: keychain complains:
>>
>> * Adding 1 gpg key(s): 370D5DFF
>> * Error: Problem adding (is pinentry installed?); giving up
>
> Wh
Eric S Fraga writes:
> I have keychain in both my .bash_profile (for when I log in in console
> mode or remotely)
there must be something wrong with my setup: keychain complains:
--8<---cut here---start->8---
* Adding 1 gpg key(s): 370D5DFF
* Error: Problem
: graphical (pinentry), emacsclient
or
in a minibuffer ?
Thanks for you help.
Julien.
John Kitchin writes:
> I found a (save-buffer) in the bibtex entry clean functions and took
> that out. I think it solves this problem.
It's working fine now, thanks.
Regards,
Julien.
Adam Porter writes:
> Julien Cubizolles free.fr> writes:
>
>> I've encountered this problem with several themes (dracula, naquadah)
>> but not with emacs -Q. Are there some special faces to define ?
>
> There are quite a few org-mode faces, like org-level-{1..8}
is problem with several themes (dracula, naquadah)
but not with emacs -Q. Are there some special faces to define ?
Julien.
t a worrying
message about overwriting it.
Julien.
sbn . ["0201500647"]) ...)]
--8<---cut here---end--->8---
However, isbn-to-bibtex-lead gets me to the right page with a bibtex
entry ready to be copied.
Julien.
John Kitchin writes:
> no problem. I am not sure when that happened though ;)
Do you mean you didn't add this functionnality recently and it's been
here all along ?
Julien.
John Kitchin writes:
> If the data exists, then arxiv-add-bibtex-entry could probably add the
> abstract if it existed. I am not too familiar with arxiv so I am not
> sure.
Just noticed that arxiv-get-pdf-add-bibtex-entry now includes the
abstract. Thanks a lot for implementing it.
Julien.
try, it's pretty
easy to get to the journal site and copy the abstract.
Julien.
Julien Cubizolles writes:
> org-ref makes it very easy to download a pdf paper when creating a new
> bibtex entry. However, there is no way that I could find to directly
> open the pdf from the bibtex entry. Could org-ref add some custom field
> like file={...} created when the
org-ref makes it very easy to download a pdf paper when creating a new
bibtex entry. However, there is no way that I could find to directly
open the pdf from the bibtex entry. Could org-ref add some custom field
like file={...} created when the pdf file is downloaded ?
Julien.
I'm starting to use org-ref to manage bibtex file, and it's impressively
useful ! However I couldn't find a variable to have the
*-add-bibtex-entry create an abstract field in the bibtex entry. Is it
possible? If not, I think it would be a useful addition.
J. Cubizolles
Eric S Fraga writes:
> On Saturday, 12 Mar 2016 at 11:50, Julien Cubizolles wrote:
>> I've recently started using org-passwords.el. I'm using symmetric
>> encryption for the gpg file where the passwords are stored. I've seen
>> mention of several ways to avoid
I've recently started using org-passwords.el. I'm using symmetric
encryption for the gpg file where the passwords are stored. I've seen
mention of several ways to avoid typing the passphrase over and over in
one session: using gpg-agent or not... What would you recommend ?
Wilk.
d inform
org-publish that the ftp site is up to date. I've looked into the
timestamps, but I don't see how I could put the right information into
it.
Julien.
ew syntax.
>
> For completeness, the function is included in ORG-NEWS relative to Org
> 9.0.
Thanks, it saved me a lot of manual changes.
Julien.
Nicolas Goaziou writes:
> I think the simplest solution may be to follow the advice in ORG-NEWS
> and use
>
> (lambda (file link) (org-pdfview-open file))
It's working, thanks.
Julien.
The #+BEGIN_LaTeX... #+END_LaTeX has been deprecated in favor of
#+BEGIN_EXPORT latex ... #+END_EXPORT. I have however a lot of older org
files that I will need to export again. I can manually change the
blocks but I was wondering if some automatic conversion function has
been implemented.
Julien.
Nicolas Goaziou writes:
> You could try adding (require 'ox-beamer) above.
That did it. For some reason, it wasn't needed before.
Julien.
.*\\)::\\([0-9]+\\)$"] 4
("/home/wilk/.emacs.d/elpa/org-pdfview-20160125.1254/org-pdfview.elc" . 662)] 2)
org-pdfview-open("/home/wilk/enseignement/2015-2016/topos/topo-tipe-beamer.pdf"
"/home/wilk/enseignement/2015-2016/topos/topo-tipe-beamer.pdf")
--8<---cut here---end--->8---
Is it a bug in Org-mode or should I report the issue to the org-pdfview
author ?
Julien.
le" "%% -*- latex-run-command: %s
-*-\n")
(const :tag "AUCTeX file variable" "%% -*- LaTeX-command: %s -*-\n")
(string :tag "custom format" "%% %s"))
:version "25.1"
:package-version '(Org . "9.0"))
--8<---cut here---end--->8---
Julien.
-
;;~/.emacs -*- mode: lisp-*-
(setq org-export-async-debug t)
(add-to-list 'load-path (expand-file-name "~/info/emacs/org-mode/lisp"))
(add-to-list 'load-path (expand-file-name
"~/info/emacs/org-mode/contrib/lisp"))
(require 'org)
(require 'ox)
--8<---cut here---end--->8---
Any idea what went wrong ?
Julien.
Nicolas Goaziou writes:
> Hello,
>
> Julien Cubizolles writes:
>
>> Did you issue a fix for org-mode or for emacs ? I've upgraded to Org-mode
>> version 8.3.2
>> (release_8.3.2-356-gb2eb53) and the problem remains.
>
> This is an old release. I fixe
a fix for org-mode or for emacs ? I've upgraded to Org-mode
version 8.3.2
(release_8.3.2-356-gb2eb53) and the problem remains.
Julien.
Eric S Fraga writes:
> On Monday, 1 Feb 2016 at 14:56, Julien Cubizolles wrote:
>> There is something wrong with org-beamer-select-environment. It fails
>> with:
>
> I just tried this and it works fine for me. Maybe tell us a bit more
> about your setup, such as what ve
) ("B_proof" .
112) ("B_beamercolorbox" . 111) (:endgroup) ("BMCOL" . 124)) nil)
org-set-tags()
org-beamer-select-environment()
funcall-interactively(org-beamer-select-environment)
call-interactively(org-beamer-select-environment nil nil)
command-execute(org-beamer-select-environment)
--8<---cut here---end--->8---
Julien.
run-hook-with-args-until-success(org-babel-execute-safely-maybe)
org-ctrl-c-ctrl-c(nil)
funcall-interactively(org-ctrl-c-ctrl-c nil)
call-interactively(org-ctrl-c-ctrl-c nil nil)
command-execute(org-ctrl-c-ctrl-c)
--8<---cut here---end--->8---
Julien.
According to
http://orgmode.org/worg/dev/org-syntax.html#Node_Properties, the NAME of
a property cannot be an empty string. However, the interactive version
of org-set-property accepts such a string, resulting in a malformed
drawer. When giving an empty string at the prompt for the property NAME,
o
since it will result :: ie a malformed drawer ?
Julien.
property and check the actual values (e.g. to signal quit if an
> empty quote is returned).
I'll give it a try someday.
Thanks for your help,
Julien.
Nicolas Goaziou writes:
> Hello,
>
> Julien Cubizolles writes:
>
>> Let's say you have an entry like the followin, with the point in the
>> Entry line. Is there an org command to put the mark on a newline after
>> :END: ? At the moment, I hav
roperty))
> (quit nil))
That's working, I'm breaking out of the loop with C-g, is that what you
intended ?
Julien.
-
*** Entry :B_action:
:PROPERTIES:
:BEAMER_env: action
:BEAMER_COL: 0.6
:END:
--8<---cut here---end--->8---
Julien.
Nicolas Goaziou writes:
> Julien Cubizolles writes:
>
>> --8<---cut here---start->8---
>> ("t" "todo" entry (fileheadline "~/org/orgfiles/refile.org" "Tâches")
>> "* TODO %? %^G\n D
t;> Also, I will sometimes need to include several different
>> properties. What would be the right way to run a loop where a new
>> property is set until the user answers something like C-return at the
>> prompt?
>
> That I don't know.
I can still run C-x-p afterwards, I've already saved many keystrokes.
Julien.
ht way to run a loop where a new
property is set until the user answers something like C-return at the
prompt ?
Julien.
Nicolas Goaziou writes:
> Hello,
>
> Julien Cubizolles writes:
>
>> Maybe it's related, but I just noted that the %^G and %^t fields
>> %-escapes don't work anymore: they just insert the "%^G" and "%^t"
>> strings instead of prompti
Maybe it's related, but I just noted that the %^G and %^t fields
%-escapes don't work anymore: they just insert the "%^G" and "%^t"
strings instead of prompting.
Julien;
gh for now.
> None I know of. I looked at something similar for pdf, but did not find
> anything but external programs.
As I mentioned image-dired has image-dired-set-exif-data and
image-dired-get-exif-data: it might be useful.
Julien.
Eric S Fraga writes:
> On Monday, 7 Dec 2015 at 22:08, Julien Cubizolles wrote:
>> I often include images in my org documents and would like to properly
>> cite the license, and/or author. I was thinking that this could be
>> simplified by:
>>
>> * embedding
Eric S Fraga writes:
> On Monday, 7 Dec 2015 at 22:08, Julien Cubizolles wrote:
>> I often include images in my org documents and would like to properly
>> cite the license, and/or author. I was thinking that this could be
>> simplified by:
>>
>> * embedding
While some are trying to get org<->pdf syncing with synctex, I'm still
struggling with getting synctec syncing between the pdf file and the tex
file generated from an org file. I thought adding --synctex=1 to
org-latex-pdf-process would be enough but it doesn't work.
Julien.
1 - 100 of 500 matches
Mail list logo