Congratulations!

[Valid Atom 1.0] This is a valid Atom 1.0 feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: http://stackoverflow.com/feeds/tag?tagnames=org-mode&sort=newest

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <feed xmlns="http://www.w3.org/2005/Atom" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:re="http://purl.org/atompub/rank/1.0">
  3.    <title type="text">Newest questions tagged org-mode - Stack Overflow</title>
  4.    <link rel="self" href="https://stackoverflow.com/feeds/tag?tagnames=org-mode&amp;sort=newest" type="application/atom+xml" />
  5.    <link rel="alternate" href="https://stackoverflow.com/questions/tagged/?tagnames=org-mode&amp;sort=newest" type="text/html" />
  6.    <subtitle>most recent 30 from stackoverflow.com</subtitle>
  7.    <updated>2024-04-25T06:39:41Z</updated>
  8.    <id>https://stackoverflow.com/feeds/tag?tagnames=org-mode&amp;sort=newest</id>
  9.    <creativeCommons:license>https://creativecommons.org/licenses/by-sa/4.0/rdf</creativeCommons:license>
  10.    <entry>
  11.        <id>https://stackoverflow.com/q/78363285</id>
  12.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  13.        <title type="text">Extracting first paragraph from node in org-mode and convert to text</title>
  14.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  15.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  16.        <author>
  17.            <name>holl</name>
  18.            <uri>https://stackoverflow.com/users/11730509</uri>
  19.        </author>
  20.        <link rel="alternate" href="https://stackoverflow.com/questions/78363285/extracting-first-paragraph-from-node-in-org-mode-and-convert-to-text" />
  21.        <published>2024-04-21T22:04:08Z</published>
  22.        <updated>2024-04-22T23:18:39Z</updated>
  23.        <summary type="html">
  24.            &lt;p&gt;I am trying to extract text from orgmode through elisp code. I have &lt;code&gt;item&lt;/code&gt; as a node of my buffer, and I would like to extract the text for the first paragraph below the headline.&lt;/p&gt;&#xA;&lt;p&gt;That is the document looks like this:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;* Section &#xA;** Hello&#xA;** World&#xA;What a beautiful day&#xA;*** Some other stuff&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;code&gt;item&lt;/code&gt; corresponds to the node with headline &lt;code&gt;World&lt;/code&gt; and I would like to get &amp;quot;What a beautiful day&amp;quot;. Additionnally, if that makes it safer (as only the raw text is important) I can encapsulate &amp;quot;What a beautiful day&amp;quot; within a source block.&lt;/p&gt;&#xA;&lt;p&gt;I&#x27;ve looked at &lt;a href=&quot;https://orgmode.org/worg/dev/org-element-api.html&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://orgmode.org/worg/dev/org-element-api.html&lt;/a&gt; and tried to extract the first child using &lt;code&gt;(car (org-element-contents &#x27;item))&lt;/code&gt; but it doesn&#x27;t look I&#x27;m getting anywhere.&lt;/p&gt;&#xA;
  25.        </summary>
  26.    </entry>
  27.    <entry>
  28.        <id>https://stackoverflow.com/q/78360268</id>
  29.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  30.        <title type="text">Emacs Org-babel executing GForth code freezes Emacs</title>
  31.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  32.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  33.            <category scheme="https://stackoverflow.com/tags" term="gforth" />
  34.        <author>
  35.            <name>user68040</name>
  36.            <uri>https://stackoverflow.com/users/20510079</uri>
  37.        </author>
  38.        <link rel="alternate" href="https://stackoverflow.com/questions/78360268/emacs-org-babel-executing-gforth-code-freezes-emacs" />
  39.        <published>2024-04-21T03:01:38Z</published>
  40.        <updated>2024-04-21T03:01:38Z</updated>
  41.        <summary type="html">
  42.            &lt;p&gt;I&#x27;m trying to execute a GForth source block in org mode. But as soon as I try executing the Forth code block, Emacs stops responding.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;What I&#x27;m trying to do:&lt;/strong&gt;&#xA;I wrote in my Org block:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;begin_src forth&#xA;1 2 .s&#xA;#&#x2B;end_src&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;and pressed C-c C-c, then it says &amp;quot;Executing Forth code block at position 407...&amp;quot;. And then Emacs just &#x27;froze&#x27;. It simply stopped responding to any command.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Expected Output:&lt;/strong&gt;&#xA;1 2 ok 2&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;What I did for configuration:&lt;/strong&gt;&#xA;I&#x27;m currently using:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;WSL Ubuntu 22.04&lt;/li&gt;&#xA;&lt;li&gt;gforth 0.7.9_20240215 amd64&lt;/li&gt;&#xA;&lt;li&gt;Emacs 30.0.50, built from source&lt;/li&gt;&#xA;&lt;li&gt;Org mode 9.6.1&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;I mostly followed the instruction in:&#xA;&lt;a href=&quot;https://gforth.org/manual/Installing-gforth_002eel.html&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://gforth.org/manual/Installing-gforth_002eel.html&lt;/a&gt; .&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;p&gt;I used ob-forth library, and downloaded gforth.el code at: &lt;a href=&quot;https://github.com/forthy42/gforth/blob/master/gforth.el&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://github.com/forthy42/gforth/blob/master/gforth.el&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;p&gt;I renamed &#x27;gforth.el&#x27; to &#x27;ext:gforth.el&#x27;, since in ob-forth it declares:&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre&gt;&lt;code&gt;(declare-function forth-proc &amp;quot;ext:gforth&amp;quot; ())&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;p&gt;I put &#x27;ext:gforth.el&#x27; in ~/emacs.d/lisp/ directory, which is included in my load path.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;p&gt;I tested forth-mode provided in &#x27;ext:gforth.el&#x27;. I ran M-x run-forth beforehand. When I tried executing code in &lt;em&gt;scratch&lt;/em&gt; buffer with forth-mode activated, everything worked and the result showed up in the minibuffer.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;My init.el:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;(org-babel-do-load-languages&#xA; &#x27;org-babel-load-languages&#xA; &#x27;((forth . t)))&#xA;&#xA;(require &#x27;ob-forth)&#xA;(load-file &amp;quot;~/.emacs.d/lisp/ext:gforth.el&amp;quot;)&#xA;(autoload &#x27;forth-mode &amp;quot;ext:gforth.el&amp;quot;)&#xA;(setq auto-mode-alist (cons &#x27;(&amp;quot;\\.fs\\&#x27;&amp;quot; . forth-mode) &#xA;                auto-mode-alist))&#xA;(autoload &#x27;forth-block-mode &amp;quot;ext:gforth.el&amp;quot;)&#xA;(setq auto-mode-alist (cons &#x27;(&amp;quot;\\.fb\\&#x27;&amp;quot; . forth-block-mode) &#xA;                auto-mode-alist))&#xA;(add-hook &#x27;forth-mode-hook (function (lambda ()&#xA;   ;; customize variables here:&#xA;   (setq forth-indent-level 4)&#xA;   (setq forth-minor-indent-level 2)&#xA;   (setq forth-hilight-level 3)&#xA;   ;;; ...&#xA;)))&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Any advice would be appreciated!&lt;/p&gt;&#xA;
  43.        </summary>
  44.    </entry>
  45.    <entry>
  46.        <id>https://stackoverflow.com/q/78310640</id>
  47.        <re:rank scheme="https://stackoverflow.com">1</re:rank>
  48.        <title type="text">Specify no heading on ORG mode table</title>
  49.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  50.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  51.        <author>
  52.            <name>njlarsson</name>
  53.            <uri>https://stackoverflow.com/users/477008</uri>
  54.        </author>
  55.        <link rel="alternate" href="https://stackoverflow.com/questions/78310640/specify-no-heading-on-org-mode-table" />
  56.        <published>2024-04-11T13:19:24Z</published>
  57.        <updated>2024-04-16T22:59:43Z</updated>
  58.        <summary type="html">
  59.            &lt;p&gt;I have the following table, with six sections. When I export it, it looks fine except that the export assumes that the first section is headings, but there is no heading on my table. How can I specify this to get the export right? Top priority is HTML export, but it would be nice if it works across target formats.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;|-----------------------------------------------------&#x2B;------|&#xA;| *Artikel*:                                          |      |&#xA;| _id_, rubrik, text, tid                             | 1p   |&#xA;|-----------------------------------------------------&#x2B;------|&#xA;| *Skribent*:                                         |      |&#xA;| _pnr_, namn, beskrivning                            | 1p   |&#xA;| FK: bylinebild (till Bild)                          | 1.5p |&#xA;|-----------------------------------------------------&#x2B;------|&#xA;| *Bild*:                                             |      |&#xA;| _url_, beskrivning                                  | 1p   |&#xA;|-----------------------------------------------------&#x2B;------|&#xA;| *Kommentar*:                                        |      |&#xA;| _id_, text, signatur                                | 1p   |&#xA;| FK: artikel                                         | 1.5p |&#xA;|-----------------------------------------------------&#x2B;------|&#xA;| *Artikelbild* (sambandstabell):                     |      |&#xA;| FK: _bild_url_ (till Bild), _art_id_ (till Artikel) | 2p   |&#xA;| alt_text, position                                  | 1p   |&#xA;|-----------------------------------------------------&#x2B;------|&#xA;| *Skriven_av* (sambandstabell):                      |      |&#xA;| FK: _art_id_ (till Artikel), _pnr_ (till Skribent)  | 2p   |&#xA;|-----------------------------------------------------&#x2B;------|&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  60.        </summary>
  61.    </entry>
  62.    <entry>
  63.        <id>https://stackoverflow.com/q/78277124</id>
  64.        <re:rank scheme="https://stackoverflow.com">-1</re:rank>
  65.        <title type="text">Inline LaTeX preview for org-mode in Emacs</title>
  66.            <category scheme="https://stackoverflow.com/tags" term="windows" />
  67.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  68.            <category scheme="https://stackoverflow.com/tags" term="latex" />
  69.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  70.        <author>
  71.            <name>Sebastian Hyland</name>
  72.            <uri>https://stackoverflow.com/users/24019027</uri>
  73.        </author>
  74.        <link rel="alternate" href="https://stackoverflow.com/questions/78277124/inline-latex-preview-for-org-mode-in-emacs" />
  75.        <published>2024-04-04T23:42:23Z</published>
  76.        <updated>2024-04-05T02:22:26Z</updated>
  77.        <summary type="html">
  78.            &lt;p&gt;I am trying to set up inline LaTeX preview for org-mode in Emacs on a Windows 11 machine. I have tried using both MiKTeX and Tex Live distributions of LaTeX, but both have failed to properly generate .dvi files from the .tex files created by Emacs.&lt;/p&gt;&#xA;&lt;p&gt;I am currently trying to get dvisvgm to work with LaTeX to generate the preview images. This is in my init.el:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;;; Inline LaTeX setup &#xA;(setenv &amp;quot;PATH&amp;quot; (concat (getenv &amp;quot;PATH&amp;quot;) &amp;quot;;C:/texlive/2024/bin/windows&amp;quot;))&#xA;(setq org-latex-pdf-process &#x27;(&amp;quot;latex -shell-escape -interaction nonstopmode %f&amp;quot;))&#xA;(setq dvisvgm &#x27;(dvisvgm&#xA;        :programs (&amp;quot;latex&amp;quot; &amp;quot;dvisvgm&amp;quot;)&#xA;                :description &amp;quot;dvi &amp;gt; svg&amp;quot;&#xA;        :message &amp;quot;you need to install the programs: latex and dvisvgm&amp;quot;&#xA;                :image-input-type &amp;quot;dvi&amp;quot;&#xA;        :image-output-type &amp;quot;svg&amp;quot;&#xA;        :image-size-adjust (1.0 . 1.0)&#xA;                :latex-compiler (&amp;quot;latex -interaction nonstopmode -output-directory %o %f&amp;quot;)&#xA;                :image-converter (&amp;quot;dvisvgm %f -n -b min -c %S -o %O&amp;quot;)&#xA;        ))&#xA;(eval-after-load &#x27;org&#xA;  &#x27;(progn&#xA;     (add-to-list &#x27;org-preview-latex-process-alist dvisvgm)&#xA;     (setq org-latex-create-formula-image-program &#x27;dvisvgm)&#xA;     (setq org-preview-latex-default-process &#x27;dvisvgm)))&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;However, I get the following error message when using C-c C-x C-l on some chunk of LaTeX code in an org-file:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Creating LaTeX preview...&#xA;org-compile-file: File &amp;quot;c:/Users/USERNAME/AppData/Local/Temp/orgtexIBo5D7.dvi&amp;quot; wasn&#x2019;t produced.  Please adjust &#x2018;dvisvgm&#x2019; part of &#x2018;org-preview-latex-process-alist&#x2019;.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Emacs DOES properly generate a .tex file, and if I open the command line and run &amp;quot;latex C:\path\to\tex\file&amp;quot; it DOES generate a .dvi file, and if I run &amp;quot;dvisvgm C:\path\to\dvi\file&amp;quot; it properly generates an svg. So, I&#x27;m not too sure what&#x27;s going on. I have not set up anything else to deal with LaTeX within Emacs.&lt;/p&gt;&#xA;
  79.        </summary>
  80.    </entry>
  81.    <entry>
  82.        <id>https://stackoverflow.com/q/78193877</id>
  83.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  84.        <title type="text">org-mime add caption to exported images</title>
  85.            <category scheme="https://stackoverflow.com/tags" term="html" />
  86.            <category scheme="https://stackoverflow.com/tags" term="email" />
  87.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  88.            <category scheme="https://stackoverflow.com/tags" term="export" />
  89.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  90.        <author>
  91.            <name>David Hendriks</name>
  92.            <uri>https://stackoverflow.com/users/6036481</uri>
  93.        </author>
  94.        <link rel="alternate" href="https://stackoverflow.com/questions/78193877/org-mime-add-caption-to-exported-images" />
  95.        <published>2024-03-20T13:51:54Z</published>
  96.        <updated>2024-03-20T13:51:54Z</updated>
  97.        <summary type="html">
  98.            &lt;p&gt;I am using org-mode to write and send emails. In my org buffers I sometimes have images that contain captions through  &lt;code&gt;#&#x2B;CAPTION:&lt;/code&gt; (&lt;a href=&quot;https://orgmode.org/manual/Captions.html&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://orgmode.org/manual/Captions.html&lt;/a&gt;). These are, as of yet, not processed in the &lt;code&gt;org-mime-org-XXX-htmlize&lt;/code&gt; calls. I would like to include these captions in the export.&lt;/p&gt;&#xA;&lt;p&gt;HTML has the  and  elements that can be used for this (&lt;a href=&quot;https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption&lt;/a&gt;), but I&#x27;m not entirely sure where to start extending the functionality of org-mime to use these to solve my problem, or whether that is currently even possible.&lt;/p&gt;&#xA;&lt;p&gt;Any advice?&lt;/p&gt;&#xA;&lt;p&gt;Looked at the internal code-base of org-mime. Didn&#x27;t find an answer.&lt;/p&gt;&#xA;
  99.        </summary>
  100.    </entry>
  101.    <entry>
  102.        <id>https://stackoverflow.com/q/78175057</id>
  103.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  104.        <title type="text">Use the same export attribute for all src-blocks</title>
  105.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  106.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  107.            <category scheme="https://stackoverflow.com/tags" term="org-babel" />
  108.        <author>
  109.            <name>Damien Cassou</name>
  110.            <uri>https://stackoverflow.com/users/121843</uri>
  111.        </author>
  112.        <link rel="alternate" href="https://stackoverflow.com/questions/78175057/use-the-same-export-attribute-for-all-src-blocks" />
  113.        <published>2024-03-17T11:35:16Z</published>
  114.        <updated>2024-03-17T11:35:16Z</updated>
  115.        <summary type="html">
  116.            &lt;p&gt;I have a bunch of org files with many src-blocks. I use the same &lt;a href=&quot;https://github.com/DamienCassou/ox-linuxmag-fr/&quot; rel=&quot;nofollow noreferrer&quot;&gt;exporter&lt;/a&gt; (that I wrote) on every org file. Most src-blocks set the same &lt;code&gt;ATTR_LINUXMAG-FR&lt;/code&gt; exporter attribute value:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;ATTR_LINUXMAG-FR: :type console&#xA;#&#x2B;begin_src text&#xA;foo&#xA;#&#x2B;end_src&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;I&#x27;m tired of repeating this first line for 90% of my src-blocks. Is there a way to specify this export attribute once in a &lt;code&gt;.dir-locals.el&lt;/code&gt; file and only override it where necessary? The above would then become simply:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;begin_src text&#xA;foo&#xA;#&#x2B;end_src&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;My &lt;code&gt;.dir-locals.el&lt;/code&gt; file already specifies a value for &lt;code&gt;org-babel-default-header-args:text&lt;/code&gt; and &lt;code&gt;org-babel-default-header-args:sh&lt;/code&gt;. It doesn&#x27;t look like this is the right place to put exporter attributes.&lt;/p&gt;&#xA;
  117.        </summary>
  118.    </entry>
  119.    <entry>
  120.        <id>https://stackoverflow.com/q/78120435</id>
  121.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  122.        <title type="text">Invoking org-store-link interactively, errors on calling org-man-store-link</title>
  123.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  124.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  125.        <author>
  126.            <name>Dan</name>
  127.            <uri>https://stackoverflow.com/users/4230627</uri>
  128.        </author>
  129.        <link rel="alternate" href="https://stackoverflow.com/questions/78120435/invoking-org-store-link-interactively-errors-on-calling-org-man-store-link" />
  130.        <published>2024-03-07T10:09:20Z</published>
  131.        <updated>2024-03-20T03:44:48Z</updated>
  132.        <summary type="html">
  133.            &lt;p&gt;I encounter issues when calling org-store-link interactively, i.e.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;helm-M-x-execute-command: Symbol&#x2019;s function definition is void: org-man-store-link&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Apparently this is a new behaviour, which has altered before conducting any package updates/upgrades. Debugger would stop here:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Debugger entered--Lisp error: (void-function org-man-store-link)&#xA;  org-man-store-link()&#xA;  org-store-link(nil 1)&#xA;  funcall-interactively(org-store-link nil 1)&#xA;  command-execute(org-store-link record)&#xA;  helm-M-x-execute-command(org-store-link)&#xA;  helm-execute-selection-action-1()&#xA;  helm-execute-selection-action()&#xA;  helm-internal((((name . &amp;quot;Emacs Commands history&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x378f185d3fa1c13&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap (keymap ...) keymap (29 . helm-M-x-toggle-short-doc) (21 . helm-M-x-universal-argument) keymap (27 keymap ...) (C-return . helm-cr-empty-string) keymap (f12 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46112040&amp;gt;)) (f11 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46171040&amp;gt;)) (f10 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46160040&amp;gt;)) (f9 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46147040&amp;gt;)) (f8 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46156040&amp;gt;)) (f7 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460d5040&amp;gt;)) (f6 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460c4040&amp;gt;)) (f5 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461db040&amp;gt;)) (f4 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461ca040&amp;gt;)) (f3 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461a9040&amp;gt;)) (f2 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461b8040&amp;gt;)) (menu-bar keymap ...) (help keymap ...) (23 . helm-helm-yank-text-at-point-with-subkeys) (f1 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e4613f040&amp;gt;)) (8 keymap ... ... ... ... ... ...) (20 . helm-toggle-resplit-and-swap-windows) (C-tab . undefined) (67108897 . helm-toggle-suspend-update) (26 . helm-toggle-full-frame) (3 keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (67108987 . helm-enlarge-window) ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . #(&amp;quot;C-j: Describe this command (keep...&amp;quot; 0 3 ...)) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode -0x3773604a5243770&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search)) ((name . &amp;quot;Emacs Commands&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x1995426471c9d4e1&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap (keymap ...) keymap (29 . helm-M-x-toggle-short-doc) (21 . helm-M-x-universal-argument) keymap (27 keymap ...) (C-return . helm-cr-empty-string) keymap (f12 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46112040&amp;gt;)) (f11 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46171040&amp;gt;)) (f10 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46160040&amp;gt;)) (f9 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46147040&amp;gt;)) (f8 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46156040&amp;gt;)) (f7 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460d5040&amp;gt;)) (f6 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460c4040&amp;gt;)) (f5 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461db040&amp;gt;)) (f4 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461ca040&amp;gt;)) (f3 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461a9040&amp;gt;)) (f2 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461b8040&amp;gt;)) (menu-bar keymap ...) (help keymap ...) (23 . helm-helm-yank-text-at-point-with-subkeys) (f1 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e4613f040&amp;gt;)) (8 keymap ... ... ... ... ... ...) (20 . helm-toggle-resplit-and-swap-windows) (C-tab . undefined) (67108897 . helm-toggle-suspend-update) (26 . helm-toggle-full-frame) (3 keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (67108987 . helm-enlarge-window) ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . #(&amp;quot;C-j: Describe this command (keep...&amp;quot; 0 3 ...)) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode 0x10e73ff112ae1fc2&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search))) nil &amp;quot;M-x &amp;quot; nil nil &amp;quot;*helm M-x*&amp;quot; nil nil helm-M-x-input-history)&#xA;  apply(helm-internal ((((name . &amp;quot;Emacs Commands history&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x378f185d3fa1c13&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap ... keymap ... ... keymap ... ... keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . ...) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode -0x3773604a5243770&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search)) ((name . &amp;quot;Emacs Commands&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x1995426471c9d4e1&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap ... keymap ... ... keymap ... ... keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . ...) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode 0x10e73ff112ae1fc2&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search))) nil &amp;quot;M-x &amp;quot; nil nil &amp;quot;*helm M-x*&amp;quot; nil nil helm-M-x-input-history))&#xA;  helm((((name . &amp;quot;Emacs Commands history&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x378f185d3fa1c13&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap (keymap ...) keymap (29 . helm-M-x-toggle-short-doc) (21 . helm-M-x-universal-argument) keymap (27 keymap ...) (C-return . helm-cr-empty-string) keymap (f12 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46112040&amp;gt;)) (f11 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46171040&amp;gt;)) (f10 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46160040&amp;gt;)) (f9 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46147040&amp;gt;)) (f8 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46156040&amp;gt;)) (f7 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460d5040&amp;gt;)) (f6 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460c4040&amp;gt;)) (f5 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461db040&amp;gt;)) (f4 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461ca040&amp;gt;)) (f3 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461a9040&amp;gt;)) (f2 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461b8040&amp;gt;)) (menu-bar keymap ...) (help keymap ...) (23 . helm-helm-yank-text-at-point-with-subkeys) (f1 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e4613f040&amp;gt;)) (8 keymap ... ... ... ... ... ...) (20 . helm-toggle-resplit-and-swap-windows) (C-tab . undefined) (67108897 . helm-toggle-suspend-update) (26 . helm-toggle-full-frame) (3 keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (67108987 . helm-enlarge-window) ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . #(&amp;quot;C-j: Describe this command (keep...&amp;quot; 0 3 ...)) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode -0x3773604a5243770&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search)) ((name . &amp;quot;Emacs Commands&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x1995426471c9d4e1&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap (keymap ...) keymap (29 . helm-M-x-toggle-short-doc) (21 . helm-M-x-universal-argument) keymap (27 keymap ...) (C-return . helm-cr-empty-string) keymap (f12 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46112040&amp;gt;)) (f11 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46171040&amp;gt;)) (f10 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46160040&amp;gt;)) (f9 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46147040&amp;gt;)) (f8 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46156040&amp;gt;)) (f7 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460d5040&amp;gt;)) (f6 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460c4040&amp;gt;)) (f5 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461db040&amp;gt;)) (f4 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461ca040&amp;gt;)) (f3 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461a9040&amp;gt;)) (f2 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461b8040&amp;gt;)) (menu-bar keymap ...) (help keymap ...) (23 . helm-helm-yank-text-at-point-with-subkeys) (f1 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e4613f040&amp;gt;)) (8 keymap ... ... ... ... ... ...) (20 . helm-toggle-resplit-and-swap-windows) (C-tab . undefined) (67108897 . helm-toggle-suspend-update) (26 . helm-toggle-full-frame) (3 keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (67108987 . helm-enlarge-window) ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . #(&amp;quot;C-j: Describe this command (keep...&amp;quot; 0 3 ...)) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode 0x10e73ff112ae1fc2&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search))) nil &amp;quot;M-x &amp;quot; nil nil &amp;quot;*helm M-x*&amp;quot; nil nil helm-M-x-input-history)&#xA;  apply(helm ((((name . &amp;quot;Emacs Commands history&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x378f185d3fa1c13&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap ... keymap ... ... keymap ... ... keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . ...) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode -0x3773604a5243770&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search)) ((name . &amp;quot;Emacs Commands&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x1995426471c9d4e1&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap ... keymap ... ... keymap ... ... keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . ...) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode 0x10e73ff112ae1fc2&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search))) nil &amp;quot;M-x &amp;quot; nil nil &amp;quot;*helm M-x*&amp;quot; nil nil helm-M-x-input-history))&#xA;  helm(:sources (((name . &amp;quot;Emacs Commands history&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x378f185d3fa1c13&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap (keymap ...) keymap (29 . helm-M-x-toggle-short-doc) (21 . helm-M-x-universal-argument) keymap (27 keymap ...) (C-return . helm-cr-empty-string) keymap (f12 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46112040&amp;gt;)) (f11 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46171040&amp;gt;)) (f10 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46160040&amp;gt;)) (f9 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46147040&amp;gt;)) (f8 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46156040&amp;gt;)) (f7 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460d5040&amp;gt;)) (f6 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460c4040&amp;gt;)) (f5 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461db040&amp;gt;)) (f4 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461ca040&amp;gt;)) (f3 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461a9040&amp;gt;)) (f2 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461b8040&amp;gt;)) (menu-bar keymap ...) (help keymap ...) (23 . helm-helm-yank-text-at-point-with-subkeys) (f1 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e4613f040&amp;gt;)) (8 keymap ... ... ... ... ... ...) (20 . helm-toggle-resplit-and-swap-windows) (C-tab . undefined) (67108897 . helm-toggle-suspend-update) (26 . helm-toggle-full-frame) (3 keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (67108987 . helm-enlarge-window) ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . #(&amp;quot;C-j: Describe this command (keep...&amp;quot; 0 3 ...)) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode -0x3773604a5243770&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search)) ((name . &amp;quot;Emacs Commands&amp;quot;) (init #f(compiled-function () #&amp;lt;bytecode 0x1995426471c9d4e1&amp;gt;)) (candidates . helm-candidates-in-buffer) (cleanup . helm-M-x--unwind-forms) (keymap keymap (keymap ...) keymap (29 . helm-M-x-toggle-short-doc) (21 . helm-M-x-universal-argument) keymap (27 keymap ...) (C-return . helm-cr-empty-string) keymap (f12 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46112040&amp;gt;)) (f11 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46171040&amp;gt;)) (f10 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46160040&amp;gt;)) (f9 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46147040&amp;gt;)) (f8 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e46156040&amp;gt;)) (f7 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460d5040&amp;gt;)) (f6 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e460c4040&amp;gt;)) (f5 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461db040&amp;gt;)) (f4 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461ca040&amp;gt;)) (f3 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461a9040&amp;gt;)) (f2 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e461b8040&amp;gt;)) (menu-bar keymap ...) (help keymap ...) (23 . helm-helm-yank-text-at-point-with-subkeys) (f1 . #f(compiled-function () ... #&amp;lt;bytecode 0x1cc6b6e4613f040&amp;gt;)) (8 keymap ... ... ... ... ... ...) (20 . helm-toggle-resplit-and-swap-windows) (C-tab . undefined) (67108897 . helm-toggle-suspend-update) (26 . helm-toggle-full-frame) (3 keymap ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) (67108987 . helm-enlarge-window) ...) (action . helm-type-command-actions) (persistent-action . helm-M-x-persistent-action) (persistent-help . &amp;quot;Describe this command&amp;quot;) (help-message . helm-M-x-help-message) (requires-pattern . 0) (filtered-candidate-transformer helm-M-x-transformer-no-sort #f(compiled-function (candidates source) #&amp;lt;bytecode -0x1375fa7292382ecb&amp;gt;) helm-fuzzy-highlight-matches) (volatile . t) (match identity) (fuzzy-match . t) (redisplay . identity) (nomark . t) (coerce . helm-symbolify) (header-line . #(&amp;quot;C-j: Describe this command (keep...&amp;quot; 0 3 ...)) (resume . helm-M-x-resume-fn) (multimatch . t) (must-match . t) (group . helm-command) (data . #f(compiled-function () #&amp;lt;bytecode 0x10e73ff112ae1fc2&amp;gt;)) (get-line . buffer-substring-no-properties) (search helm-mm-exact-search helm-mm-search helm-candidates-in-buffer-search-default-fn helm-fuzzy-search))) :prompt &amp;quot;M-x &amp;quot; :buffer &amp;quot;*helm M-x*&amp;quot; :history helm-M-x-input-history :truncate-lines t)&#xA;  helm-M-x-read-extended-command([python-imenu-format-parent-item-label table--measure-max-width org-element-paragraph-separate calendar-forward-week tramp-sudoedit-file-name-handler tramp-completion-handle-file-name-all-completions Set\ Slice ivy-explorer python-nav-beginning-of-defun-regexp Reduce\ To:\ to\ Cc: curr-btn help-follow-symbol treemacs-dom-node-&amp;gt;set-position! c-state-min-scan-pos gnus-article-nndoc-name &amp;amp;error rng-parse-validate-file :REVEAL_BACKGROUND_TRANS gnus-mime-security-details-buffer gnus-agent-group-covered-p org-table--descriptor-line edebug-mode-on-hook message-expand-name-databases C-i treemacs--button-symbol-switch nnoo-map-functions smie-config--guess-value search-emacs-glossary kmacro-pop-ring1 which-key--stop-timer c-list-found-types byte-condition-case :mac isqrt 0 About widget-face-sample-face-get nnimap-status-message gnus-summary-limit-to-marks org-agenda-menu-show-matcher nnmail-message-id-cache-file helm-grep-save-results-1 article-fill-long-lines smime-buffer-as-string-region no-truncate check-declare xref-group angle-bracket-arglist-escape bibtex-text-in-string eieio-instance-tracker-child-p ...])&#xA;  helm-M-x(nil)&#xA;  funcall-interactively(helm-M-x nil)&#xA;  command-execute(helm-M-x)&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;How can I track/fix this?&lt;/p&gt;&#xA;
  134.        </summary>
  135.    </entry>
  136.    <entry>
  137.        <id>https://stackoverflow.com/q/78062960</id>
  138.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  139.        <title type="text">org-mode Add property column to the org agenda clock report</title>
  140.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  141.        <author>
  142.            <name>djnz0feh</name>
  143.            <uri>https://stackoverflow.com/users/934757</uri>
  144.        </author>
  145.        <link rel="alternate" href="https://stackoverflow.com/questions/78062960/org-mode-add-property-column-to-the-org-agenda-clock-report" />
  146.        <published>2024-02-26T17:55:36Z</published>
  147.        <updated>2024-02-26T17:55:36Z</updated>
  148.        <summary type="html">
  149.            &lt;p&gt;In a standard &lt;code&gt;org-agenda&lt;/code&gt; with &lt;code&gt;clockreport&lt;/code&gt; mode, how can I add a column to show a specific custom property? Each (level 2) headline has a property :JOBNO: that I would like to show as follows:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;| File  | JOBNO | Headline             | Time   |      |&#xA;|-------&#x2B;-------&#x2B;----------------------&#x2B;--------&#x2B;------|&#xA;|       |       | ALL *Total time*     | *1:04* |      |&#xA;|-------&#x2B;-------&#x2B;----------------------&#x2B;--------&#x2B;------|&#xA;| T.org |       | *File time*          | *1:04* |      |&#xA;|       |       | Dept 1               | 0:13   |      |&#xA;|       | P100  | \_  Project 1a       |        | 0:13 |&#xA;|       |       | Dept 2               | 0:51   |      |&#xA;|       | P200  | \_  Project 2b ]     |        | 0:51 |&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;I&#x27;ve tried setting org-overriding-columns-format and org-columns-default-format-for-agenda nothing changes - but the ``clockreport`is not a columns view as such. I had this working before and lost my .emacs file in a move!&lt;/p&gt;&#xA;
  150.        </summary>
  151.    </entry>
  152.    <entry>
  153.        <id>https://stackoverflow.com/q/78047832</id>
  154.        <re:rank scheme="https://stackoverflow.com">1</re:rank>
  155.        <title type="text">org-mode inline images display with `insert-sliced-image`</title>
  156.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  157.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  158.        <author>
  159.            <name>gnupa</name>
  160.            <uri>https://stackoverflow.com/users/989529</uri>
  161.        </author>
  162.        <link rel="alternate" href="https://stackoverflow.com/questions/78047832/org-mode-inline-images-display-with-insert-sliced-image" />
  163.        <published>2024-02-23T13:46:33Z</published>
  164.        <updated>2024-02-29T02:46:52Z</updated>
  165.        <summary type="html">
  166.            &lt;p&gt;When displaying inline images in org-mode it sort of acts like a single line. Like this it is impossible to scroll through a big image. Emacs will jump to the top of the image then just after it.&lt;/p&gt;&#xA;&lt;p&gt;Really would like to get sliced image display working with org-mode, so that I can view bigger inline images without having to open them in a new window and play with zoom.&lt;/p&gt;&#xA;&lt;p&gt;What I aim for is something shown in the latter part of this gif:&#xA;&lt;img src=&quot;https://github.com/thanhvg/emacs-hnreader/blob/master/docs/screencast.gif?raw=true&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&#xA;&lt;p&gt;NOTE: this gif isn&#x27;t showing org-mode, I know this. But this type of image display would be really-really nice in org-mode. Source of the gif: &lt;a href=&quot;https://github.com/thanhvg/emacs-hnreader&quot; rel=&quot;nofollow noreferrer&quot;&gt;emacs-hnreader&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;This sliced image is an Emacs feature: &lt;a href=&quot;https://www.gnu.org/software/emacs/manual/html_node/elisp/Showing-Images.html&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://www.gnu.org/software/emacs/manual/html_node/elisp/Showing-Images.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;There was also a question about this over on emacs SO, but never got any attention: &lt;a href=&quot;https://emacs.stackexchange.com/questions/40550/org-mode-and-insert-sliced-image&quot;&gt;https://emacs.stackexchange.com/questions/40550/org-mode-and-insert-sliced-image&lt;/a&gt;&lt;/p&gt;&#xA;
  167.        </summary>
  168.    </entry>
  169.    <entry>
  170.        <id>https://stackoverflow.com/q/78034504</id>
  171.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  172.        <title type="text">Org-mode note and Evil - go into insert mode and change shortcuts</title>
  173.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  174.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  175.            <category scheme="https://stackoverflow.com/tags" term="evil-mode" />
  176.        <author>
  177.            <name>Asaf</name>
  178.            <uri>https://stackoverflow.com/users/333283</uri>
  179.        </author>
  180.        <link rel="alternate" href="https://stackoverflow.com/questions/78034504/org-mode-note-and-evil-go-into-insert-mode-and-change-shortcuts" />
  181.        <published>2024-02-21T13:44:43Z</published>
  182.        <updated>2024-02-21T13:44:43Z</updated>
  183.        <summary type="html">
  184.            &lt;p&gt;I&#x27;m using Emacs with Org-mode and evil-mode.&#xA;When inserting a note (&lt;code&gt;:org-add-note&lt;/code&gt;) I would like to start in insert mode, as well as change the shortcuts (from &lt;code&gt;C-c C-c&lt;/code&gt; to &lt;code&gt;RET&lt;/code&gt;, and &lt;code&gt;C-c C-k&lt;/code&gt; to &lt;code&gt;C-g&lt;/code&gt;).&lt;/p&gt;&#xA;&lt;p&gt;While I know of &lt;code&gt;org-capture-mode-hook&lt;/code&gt;, it doesn&#x27;t seem to work for the org-add-note command.&lt;/p&gt;&#xA;&lt;p&gt;Any ideas?&lt;/p&gt;&#xA;
  185.        </summary>
  186.    </entry>
  187.    <entry>
  188.        <id>https://stackoverflow.com/q/78021637</id>
  189.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  190.        <title type="text">Github Actions does not export citations from Emacs org-mode</title>
  191.            <category scheme="https://stackoverflow.com/tags" term="html" />
  192.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  193.            <category scheme="https://stackoverflow.com/tags" term="github-actions" />
  194.            <category scheme="https://stackoverflow.com/tags" term="github-pages" />
  195.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  196.        <author>
  197.            <name>Chris</name>
  198.            <uri>https://stackoverflow.com/users/7047312</uri>
  199.        </author>
  200.        <link rel="alternate" href="https://stackoverflow.com/questions/78021637/github-actions-does-not-export-citations-from-emacs-org-mode" />
  201.        <published>2024-02-19T15:07:55Z</published>
  202.        <updated>2024-02-19T15:07:55Z</updated>
  203.        <summary type="html">
  204.            &lt;p&gt;I want to use github actions to export org-mode files via ox-publish to html and publish the result as a gh-page. With some inspiration from &lt;a href=&quot;https://systemcrafters.net/publishing-websites-with-org-mode/automated-site-publishing/&quot; rel=&quot;nofollow noreferrer&quot;&gt;systemcrafters&lt;/a&gt; this works rather well.&lt;/p&gt;&#xA;&lt;p&gt;However, citations are not properly exported from org-mode. The weird part is that everything works nicely if I run the build script locally on my machine (it produces a index.html in the folder &amp;quot;public&amp;quot; that has properly formatted references) but fails to work when it is run by github actions.&lt;/p&gt;&#xA;&lt;p&gt;My test repository is &lt;a href=&quot;https://github.com/schottmueller/test&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://github.com/schottmueller/test&lt;/a&gt; and the unsuccessful result is &lt;a href=&quot;https://schottmueller.github.io/test/&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://schottmueller.github.io/test/&lt;/a&gt;&lt;/p&gt;&#xA;
  205.        </summary>
  206.    </entry>
  207.    <entry>
  208.        <id>https://stackoverflow.com/q/77882663</id>
  209.        <re:rank scheme="https://stackoverflow.com">1</re:rank>
  210.        <title type="text">How do I publish a single org file every time?</title>
  211.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  212.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  213.        <author>
  214.            <name>Preston Pan</name>
  215.            <uri>https://stackoverflow.com/users/21990508</uri>
  216.        </author>
  217.        <link rel="alternate" href="https://stackoverflow.com/questions/77882663/how-do-i-publish-a-single-org-file-every-time" />
  218.        <published>2024-01-25T20:06:20Z</published>
  219.        <updated>2024-01-26T01:26:42Z</updated>
  220.        <summary type="html">
  221.            &lt;p&gt;I have some code blocks whose output changes based on side-effects e.g. they might be bash scripts that interact with names of files. How do I tell org-publish to publish a certain file every time from within the file?&lt;/p&gt;&#xA;&lt;p&gt;of course, I can force publish every time but that wastes time when I could selectively force-publish a couple files. I also want it to be from within the file because editing my emacs configuration rather than editing the file I&#x27;m already in is more work.&lt;/p&gt;&#xA;
  222.        </summary>
  223.    </entry>
  224.    <entry>
  225.        <id>https://stackoverflow.com/q/77877072</id>
  226.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  227.        <title type="text">What would be an easy way to add a navbar that links to the superfolder&#x27;s index page automatically when exporting org mode files?</title>
  228.            <category scheme="https://stackoverflow.com/tags" term="html" />
  229.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  230.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  231.        <author>
  232.            <name>Preston Pan</name>
  233.            <uri>https://stackoverflow.com/users/21990508</uri>
  234.        </author>
  235.        <link rel="alternate" href="https://stackoverflow.com/questions/77877072/what-would-be-an-easy-way-to-add-a-navbar-that-links-to-the-superfolders-index" />
  236.        <published>2024-01-25T01:14:30Z</published>
  237.        <updated>2024-01-25T09:58:48Z</updated>
  238.        <summary type="html">
  239.            &lt;p&gt;In static site generators, it is often possible to automatically add links to pages automatically such that each page links to the previous index page except for the root page. So far, I have avoided the need for a static site generator by using org mode instead, but this is still a problem that seems unapproachable to me.&lt;/p&gt;&#xA;&lt;p&gt;Obviously it is possible to script in emacs-lisp in some way in order to do this but I don&#x27;t have much experience and doing so. This would be made a lot simpler with some sort of templating system, but it doesn&#x27;t seem straightforward to add one, and I don&#x27;t believe emacs has one built-in.&lt;/p&gt;&#xA;
  240.        </summary>
  241.    </entry>
  242.    <entry>
  243.        <id>https://stackoverflow.com/q/77856807</id>
  244.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  245.        <title type="text">Is it possible to do conditional formatting on an org-table?</title>
  246.            <category scheme="https://stackoverflow.com/tags" term="javascript" />
  247.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  248.            <category scheme="https://stackoverflow.com/tags" term="org-table" />
  249.        <author>
  250.            <name>crocefisso</name>
  251.            <uri>https://stackoverflow.com/users/5709240</uri>
  252.        </author>
  253.        <link rel="alternate" href="https://stackoverflow.com/questions/77856807/is-it-possible-to-do-conditional-formatting-on-an-org-table" />
  254.        <published>2024-01-21T22:07:35Z</published>
  255.        <updated>2024-01-21T22:07:35Z</updated>
  256.        <summary type="html">
  257.            &lt;p&gt;Here is an example of a table to format,&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;the first row represents how often a task is done per year,&lt;/li&gt;&#xA;&lt;li&gt;the first column represents how long a task takes in seconds&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre&gt;&lt;code&gt;|-------&#x2B;------------&#x2B;-----------&#x2B;----------&#x2B;---------&#x2B;---------&#x2B;-------|&#xA;|       |      18250 |      1825 |      365 |      52 |      12 |     1 |&#xA;|-------&#x2B;------------&#x2B;-----------&#x2B;----------&#x2B;---------&#x2B;---------&#x2B;-------|&#xA;|     1 |      18250 |      1825 |      365 |      52 |      12 |     1 |&#xA;|     5 |      91250 |      9125 |     1825 |     260 |      60 |     5 |&#xA;|    30 |     547500 |     54750 |    10950 |    1560 |     360 |    30 |&#xA;|    60 |    1095000 |    109500 |    21900 |    3120 |     720 |    60 |&#xA;|   300 |    5475000 |    547500 |   109500 |   15600 |    3600 |   300 |&#xA;|  1800 |   32850000 |   3285000 |   657000 |   93600 |   21600 |  1800 |&#xA;|  3600 |   65700000 |   6570000 |  1314000 |  187200 |   43200 |  3600 |&#xA;| 21600 |  394200000 |  39420000 |  7884000 | 1123200 |  259200 | 21600 |&#xA;| 86400 | 1576800000 | 157680000 | 31536000 | 4492800 | 1036800 | 86400 |&#xA;|-------&#x2B;------------&#x2B;-----------&#x2B;----------&#x2B;---------&#x2B;---------&#x2B;-------|&#xA;#&#x2B;TBLFM: $2=$1*@1$2::$3=$1*@1$3::$4=$1*@1$4::$5=$1*@1$5::$6=$1*@1$6::$7=$1*@1$7&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Is it possible to change the cell display while keeping the values?&lt;/p&gt;&#xA;&lt;p&gt;Here are some examples of displays:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;|-------&#x2B;-------&#x2B;---------|&#xA;| Cell  | Value | Display |&#xA;|-------&#x2B;-------&#x2B;---------|&#xA;| @1$4  |   365 | Daily   |&#xA;| @1$7  |     1 | Yearly  |&#xA;| @3$6  |    60 | 1 m     |&#xA;| @6$6  |  3600 | 1 h     |&#xA;| @10$1 | 86400 | 1 d     |&#xA;|-------&#x2B;-------&#x2B;---------|&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Here is a complete example from &lt;a href=&quot;https://xkcd.com&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://xkcd.com&lt;/a&gt; (where values are multiplied by 5):&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/qE50J.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/qE50J.png&quot; alt=&quot;XKCD chart&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ideally, I would like the display to be generated according to some rules (e.g. for all rows below row 1, if  3600 &amp;lt; x &amp;gt; 59, divide by 60 and add &amp;quot; m&amp;quot;), and to show a heat map.&lt;/p&gt;&#xA;&lt;p&gt;I don&#x27;t necessarily need the formatting to be done by org-mode. The table will be exported to HTML, so ideally, the formatting would be done through HTML export and JS code (using some cdn library).&lt;/p&gt;&#xA;
  258.        </summary>
  259.    </entry>
  260.    <entry>
  261.        <id>https://stackoverflow.com/q/77673856</id>
  262.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  263.        <title type="text">org-mode: how to show header arguments when exporting to html</title>
  264.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  265.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  266.        <author>
  267.            <name>RNA</name>
  268.            <uri>https://stackoverflow.com/users/489564</uri>
  269.        </author>
  270.        <link rel="alternate" href="https://stackoverflow.com/questions/77673856/org-mode-how-to-show-header-arguments-when-exporting-to-html" />
  271.        <published>2023-12-17T09:12:11Z</published>
  272.        <updated>2023-12-18T10:47:20Z</updated>
  273.        <summary type="html">
  274.            &lt;p&gt;The org mode doesn&#x27;t export header arguments or block name to html. In the following example, it would be confusing to read the exported html page if the passing of variable &lt;code&gt;bar&lt;/code&gt; is not shown up. Is there any setting or customization to enable the html export of header arguments and block name (eg &lt;code&gt;call-example&lt;/code&gt;) here?&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;name: call-example&#xA;#&#x2B;begin_src emacs-lisp :var bar=&amp;quot;baz&amp;quot; :exports both&#xA;  (sit-for 1)&#xA;  (message &amp;quot;bar=%S&amp;quot; bar)&#xA;#&#x2B;end_src&#xA;&#xA;#&#x2B;RESULTS: call-example&#xA;: bar=&amp;quot;baz&amp;quot;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  275.        </summary>
  276.    </entry>
  277.    <entry>
  278.        <id>https://stackoverflow.com/q/77614927</id>
  279.        <re:rank scheme="https://stackoverflow.com">2</re:rank>
  280.        <title type="text">Source code evaluation header, in order that the Org file to be rendered it in Github</title>
  281.            <category scheme="https://stackoverflow.com/tags" term="github" />
  282.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  283.        <author>
  284.            <name>BuddhiLW</name>
  285.            <uri>https://stackoverflow.com/users/11305741</uri>
  286.        </author>
  287.        <link rel="alternate" href="https://stackoverflow.com/questions/77614927/source-code-evaluation-header-in-order-that-the-org-file-to-be-rendered-it-in-g" />
  288.        <published>2023-12-06T16:52:26Z</published>
  289.        <updated>2023-12-13T11:33:08Z</updated>
  290.        <summary type="html">
  291.            &lt;p&gt;Having a file with #&#x2B;RESULTS: won&#x27;t have the results actually rendered, when seen in Github.&lt;/p&gt;&#xA;&lt;p&gt;For example:&#xA;&lt;a href=&quot;https://github.com/BuddhiLW/pos-go-expert/blob/main/Notes.org#structs-and-interfaces&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://github.com/BuddhiLW/pos-go-expert/blob/main/Notes.org#structs-and-interfaces&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The source code in this section actually have the following text in the file, but is not redered:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;RESULTS:&#xA;: struFoo: {Foo 256 true} fundacao.StruFoo&#xA;: struFooBar: {[Foo Bar] [256 512] [true false] {Foo 256 true}} fundacao.StruFooBar&#xA;: struBarfoo: {[Foo Bar] [256 512] [true false] {Foo 256 true}} fundacao.StruBarfoo&#xA;:&#xA;: Struct instances of StruFooBar and StruBarfoo will look identical, but aren&#x27;t.&#xA;: Composition vs Standard type (implies direct access vs not direct access):&#xA;: struFooBar.S (Foo) == struBarfoo.SFoo.S (Foo)? true&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;I expected the #&#x2B;RESULTS section to be rendered in Github automatically.&lt;/p&gt;&#xA;&lt;p&gt;Can I change the src code header, with some option, that will make the evaluation result &amp;quot;renderable&amp;quot; in Github?&lt;/p&gt;&#xA;
  292.        </summary>
  293.    </entry>
  294.    <entry>
  295.        <id>https://stackoverflow.com/q/77590381</id>
  296.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  297.        <title type="text">How to add a symbol such as &gt; besides ... the end of a heading if that it has sub-headings in org-mode when collpased?</title>
  298.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  299.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  300.            <category scheme="https://stackoverflow.com/tags" term="tableofcontents" />
  301.        <author>
  302.            <name>Akari</name>
  303.            <uri>https://stackoverflow.com/users/19041425</uri>
  304.        </author>
  305.        <link rel="alternate" href="https://stackoverflow.com/questions/77590381/how-to-add-a-symbol-such-as-besides-the-end-of-a-heading-if-that-it-has-su" />
  306.        <published>2023-12-02T12:42:09Z</published>
  307.        <updated>2023-12-02T17:17:33Z</updated>
  308.        <summary type="html">
  309.            &lt;p&gt;It would be very helpful if such a feature can be acheived. I always have difficulty when visiting a long-time not visited org file, where it may have lots of headings and their sub-headings, and so on. I need to have an overall grasp of which headings have sub-headings when collapsed and when only first-level headings are shown. Since, headings and sub-headings are a lot, so I&#x27;m used to only showing first-level headings and opening up a certain heading when I know exactly that it has sub-headings. If I use C-Tab, all second-level sub-headings of first-headings will be shown up, which adds more obstacle for navigating!&lt;/p&gt;&#xA;&lt;p&gt;In ideal, sub-headings of their parent heading should also have this symbol in the end of them, if they have their own sub-headings.&lt;/p&gt;&#xA;&lt;p&gt;It&#x27;s gonna be a dream to come into reality, so I can finally, completely move from zim to emacs. Among Gui note-taking programs, zim is the most powerful yet simple that has every feature that I need.&lt;/p&gt;&#xA;&lt;p&gt;But the only downside of it is that it relies so much on mouse, instead of providing actions that can completely be done on only keyboard. When working on a laptop, which provides less-comfort for controlling the cursor, this issue has become more serious for me.&lt;/p&gt;&#xA;&lt;p&gt;For example: In org-mode of emacs&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;* First-level heading that has sub-headings...&amp;gt;&#xA;    ** Sub-heading1 that has its own sub-headings...&amp;gt;&#xA;        *** Heading1...&#xA;            Just some text&#xA;        *** Heading2...&amp;gt;&#xA;            Some text&#xA;            **** Heading1...&#xA;                Just some text&#xA;    ** Sub-heading 2...&#xA;        Just some text&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Or any plugins that do exactly the job as a sidebar as what Zim does&lt;/p&gt;&#xA;&lt;p&gt;Like the following:&#xA;When expanded&#xA;&lt;a href=&quot;https://i.stack.imgur.com/3UhIN.jpg&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/3UhIN.jpg&quot; alt=&quot;When expanded&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;When collapsed&#xA;&lt;a href=&quot;https://i.stack.imgur.com/LouRi.jpg&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/LouRi.jpg&quot; alt=&quot;When collapsed&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;
  310.        </summary>
  311.    </entry>
  312.    <entry>
  313.        <id>https://stackoverflow.com/q/77503274</id>
  314.        <re:rank scheme="https://stackoverflow.com">1</re:rank>
  315.        <title type="text">Insert \usepackage statements before hyperref, when exporting to Latex in org mode, on a file level</title>
  316.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  317.            <category scheme="https://stackoverflow.com/tags" term="latex" />
  318.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  319.        <author>
  320.            <name>deniel</name>
  321.            <uri>https://stackoverflow.com/users/22494112</uri>
  322.        </author>
  323.        <link rel="alternate" href="https://stackoverflow.com/questions/77503274/insert-usepackage-statements-before-hyperref-when-exporting-to-latex-in-org-mo" />
  324.        <published>2023-11-17T16:39:30Z</published>
  325.        <updated>2023-11-17T16:39:30Z</updated>
  326.        <summary type="html">
  327.            &lt;p&gt;When exporting to Latex I want to include &lt;code&gt;\usepackage&lt;/code&gt; statements in a specific org file.&lt;/p&gt;&#xA;&lt;p&gt;This is possible with &lt;code&gt;#&#x2B;LATEX_HEADER:&lt;/code&gt; or &lt;code&gt;#&#x2B;LATEX_HEADER_EXTRA:&lt;/code&gt;. The problem is that the packages I want to include need to be inserted before &lt;code&gt;\usepackage{hyperref}&lt;/code&gt; as the documentation for hyperref stated.&lt;/p&gt;&#xA;&lt;p&gt;There is the possiblity to modify the structure of the resulting latex header with the &lt;code&gt;org-latex-classes&lt;/code&gt; variable, but this would change the behavior globaly and not just for the current org file where I want to include the package. If possible I just want to insert a package before hyperref and keep using the standard &lt;code&gt;#&#x2B;LATEX_CLASS:&lt;/code&gt; from org mode.&lt;/p&gt;&#xA;&lt;p&gt;Here is a sample .org file I want to export with &lt;code&gt;\usepackage{lmodern}&lt;/code&gt; as an example:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;LATEX_CLASS: article&#xA;#&#x2B;LATEX_CLASS_OPTIONS: [a4paper]&#xA;#&#x2B;LATEX_HEADER: \usepackage{lmodern}&#xA;&#xA;* Headline 1&#xA;  some text&#xA;* Headline 2&#xA;  some more text&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;The resulting Latex output with &lt;code&gt;\usepackage{lmodern}&lt;/code&gt; after &lt;code&gt;\usepackage{hyperref}&lt;/code&gt;, where hyperref should be the last package loaded:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;% Created 2023-11-17 Fr 16:15&#xA;% Intended LaTeX compiler: pdflatex&#xA;\documentclass[a4paper]{article}&#xA;\usepackage[utf8]{inputenc}&#xA;\usepackage[T1]{fontenc}&#xA;\usepackage{graphicx}&#xA;\usepackage{longtable}&#xA;\usepackage{wrapfig}&#xA;\usepackage{rotating}&#xA;\usepackage[normalem]{ulem}&#xA;\usepackage{amsmath}&#xA;\usepackage{amssymb}&#xA;\usepackage{capt-of}&#xA;\usepackage{hyperref}&#xA;\usepackage{lmodern}&#xA;\author{me}&#xA;\date{\today}&#xA;\title{}&#xA;\hypersetup{&#xA; pdfauthor={me},&#xA; pdftitle={},&#xA; pdfkeywords={},&#xA; pdfsubject={},&#xA; pdfcreator={Emacs 29.1 (Org mode 9.6.6)}, &#xA; pdflang={English}}&#xA;\begin{document}&#xA;&#xA;\tableofcontents&#xA;&#xA;&#xA;\section{Headline 1}&#xA;\label{sec:org1af97b4}&#xA;some text&#xA;\section{Headline 2}&#xA;\label{sec:org14cd1e2}&#xA;some more text&#xA;\end{document}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  328.        </summary>
  329.    </entry>
  330.    <entry>
  331.        <id>https://stackoverflow.com/q/77374358</id>
  332.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  333.        <title type="text">failed to change the color theme in org mode by using `face-remap-add-relative`</title>
  334.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  335.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  336.        <author>
  337.            <name>cwind</name>
  338.            <uri>https://stackoverflow.com/users/7334572</uri>
  339.        </author>
  340.        <link rel="alternate" href="https://stackoverflow.com/questions/77374358/failed-to-change-the-color-theme-in-org-mode-by-using-face-remap-add-relative" />
  341.        <published>2023-10-27T13:00:12Z</published>
  342.        <updated>2023-10-27T13:00:12Z</updated>
  343.        <summary type="html">
  344.            &lt;p&gt;I use a &lt;code&gt;calm-forest&lt;/code&gt; color theme in general. But I want to use a light theme when I edit the &lt;code&gt;org&lt;/code&gt; file. Thus I rewrote the &lt;code&gt;emacs-21&lt;/code&gt; color theme to a hook as the following scripts, but I failed to get a correct color scheme (seems the opacity of all colors decreases).&lt;/p&gt;&#xA;&lt;p&gt;What happened to my script? How do I change the &lt;code&gt;org&lt;/code&gt; file to the correct &lt;code&gt;emacs-21&lt;/code&gt; color theme?&lt;/p&gt;&#xA;&lt;pre class=&quot;lang-lisp prettyprint-override&quot;&gt;&lt;code&gt;(add-to-list &#x27;custom-theme-load-path&#xA;         (file-name-as-directory &amp;quot;~/syncthing/emacs/replace-colorthemes/&amp;quot;))&#xA;&#xA;(load-theme &#x27;calm-forest t t)&#xA;(enable-theme &#x27;calm-forest)&#xA;&#xA;&#xA;(defun my-org-mode-faces-emacs-21 ()&#xA;  ;; (face-remap-add-relative  &#x27;default :background &amp;quot;white&amp;quot; :foreground &amp;quot;black&amp;quot;)&#xA;  (face-remap-add-relative  &#x27;default  &#x27;(:background &amp;quot;white&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;mouse  &#x27;(:background &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;cursor  &#x27;(:background &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;border  &#x27;(:background &amp;quot;black&amp;quot;))&#xA;&#xA;  (face-remap-add-relative  &#x27;Man-overstrike-face  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;Man-underline-face  &#x27;(:inherit default :underline t))&#xA;  (face-remap-add-relative  &#x27;cperl-here-face  &#x27;(:inherit default :foreground &amp;quot;RosyBrown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;cperl-invalid-face  &#x27;(:inherit default :underline t))&#xA;  (face-remap-add-relative  &#x27;cperl-pod-face  &#x27;(:inherit default :foreground &amp;quot;Firebrick&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;cperl-pod-head-face  &#x27;(:inherit default :foreground &amp;quot;DarkGoldenrod&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;gnus-article-button-face  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;gnus-article-mouse-face  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;gnus-mouse-face  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;help-highlight-face  &#x27;(:inherit default :underline t))&#xA;  (face-remap-add-relative  &#x27;idlwave-class-arrow-face  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;idlwave-shell-breakpoint-face  &#x27;(:inherit default :background &amp;quot;Pink&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;idlwave-shell-expression-face  &#x27;(:inherit default :background &amp;quot;yellow&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;idlwave-shell-stop-line-face  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ispell-highlight-face  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;list-matching-lines-face  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;view-highlight-face  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;widget-mouse-face  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;Info-title-1-face  &#x27;(:inherit default :bold t :weight bold  :height 1.728))&#xA;  (face-remap-add-relative  &#x27;Info-title-2-face  &#x27;(:inherit default :bold t  :weight bold :height 1.44))&#xA;  (face-remap-add-relative  &#x27;Info-title-3-face  &#x27;(:inherit default :bold t :weight bold  :height 1.2))&#xA;  (face-remap-add-relative  &#x27;Info-title-4-face  &#x27;(:inherit default :bold t  :weight bold))&#xA;  (face-remap-add-relative  &#x27;antlr-font-lock-keyword-face  &#x27;(:inherit default :bold t :foreground &amp;quot;black&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;antlr-font-lock-literal-face  &#x27;(:inherit default :bold t :foreground &amp;quot;brown4&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;antlr-font-lock-ruledef-face  &#x27;(:inherit default :bold t :foreground &amp;quot;blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;antlr-font-lock-ruleref-face  &#x27;(:inherit default :foreground &amp;quot;blue4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;antlr-font-lock-tokendef-face  &#x27;(:inherit default :bold t :foreground &amp;quot;blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;antlr-font-lock-tokenref-face  &#x27;(:inherit default :foreground &amp;quot;orange4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;bold  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;bold-italic  &#x27;(:inherit default :italic t :bold t :slant italic :weight bold))&#xA;  (face-remap-add-relative  &#x27;calendar-today-face  &#x27;(:inherit default :underline t))&#xA;  (face-remap-add-relative  &#x27;change-log-acknowledgement-face  &#x27;(:inherit default :foreground &amp;quot;Firebrick&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;change-log-conditionals-face  &#x27;(:inherit default :foreground &amp;quot;DarkGoldenrod&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;change-log-date-face  &#x27;(:inherit default :foreground &amp;quot;RosyBrown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;change-log-email-face  &#x27;(:inherit default :foreground &amp;quot;DarkGoldenrod&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;change-log-file-face  &#x27;(:inherit default :foreground &amp;quot;Blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;change-log-function-face  &#x27;(:inherit default :foreground &amp;quot;DarkGoldenrod&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;change-log-list-face  &#x27;(:inherit default :foreground &amp;quot;Purple&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;change-log-name-face  &#x27;(:inherit default :foreground &amp;quot;CadetBlue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;comint-highlight-input  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;comint-highlight-prompt  &#x27;(:inherit default :foreground &amp;quot;dark blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;cperl-array-face  &#x27;(:inherit default :bold t :background &amp;quot;lightyellow2&amp;quot; :foreground &amp;quot;Blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;cperl-hash-face  &#x27;(:inherit default :italic t :bold t :background &amp;quot;lightyellow2&amp;quot; :foreground &amp;quot;Red&amp;quot; :slant italic :weight bold))&#xA;  (face-remap-add-relative  &#x27;cperl-nonoverridable-face  &#x27;(:inherit default :foreground &amp;quot;chartreuse3&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-button-face  &#x27;(:inherit default :background &amp;quot;lightgrey&amp;quot; :foreground &amp;quot;black&amp;quot;&#xA;                                :box (:line-width 2 :style released-button)))&#xA;  (face-remap-add-relative  &#x27;custom-button-pressed-face  &#x27;(:inherit default :background &amp;quot;lightgrey&amp;quot; :foreground &amp;quot;black&amp;quot;&#xA;                                    :box (:line-width 2 :style pressed-button)))&#xA;  (face-remap-add-relative  &#x27;custom-changed-face  &#x27;(:inherit default :background &amp;quot;blue&amp;quot; :foreground &amp;quot;white&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-comment-face  &#x27;(:inherit default :background &amp;quot;gray85&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-comment-tag-face  &#x27;(:inherit default :foreground &amp;quot;blue4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-documentation-face  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;custom-face-tag-face  &#x27;(:inherit default :bold t  :weight bold :height 1.2))&#xA;  (face-remap-add-relative  &#x27;custom-group-tag-face  &#x27;(:inherit default :bold t :foreground &amp;quot;blue&amp;quot; :weight bold :height 1.2))&#xA;  (face-remap-add-relative  &#x27;custom-group-tag-face-1  &#x27;(:inherit default :bold t  :foreground &amp;quot;red&amp;quot; :weight bold :height 1.2))&#xA;  (face-remap-add-relative  &#x27;custom-invalid-face  &#x27;(:inherit default :background &amp;quot;red&amp;quot; :foreground &amp;quot;yellow&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-modified-face  &#x27;(:inherit default :background &amp;quot;blue&amp;quot; :foreground &amp;quot;white&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-rogue-face  &#x27;(:inherit default :background &amp;quot;black&amp;quot; :foreground &amp;quot;pink&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-saved-face  &#x27;(:inherit default :underline t))&#xA;  (face-remap-add-relative  &#x27;custom-set-face  &#x27;(:inherit default :background &amp;quot;white&amp;quot; :foreground &amp;quot;blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-state-face  &#x27;(:inherit default :foreground &amp;quot;dark green&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;custom-variable-button-face  &#x27;(:inherit default :bold t :underline t :weight bold))&#xA;  (face-remap-add-relative  &#x27;custom-variable-tag-face  &#x27;(:inherit default :bold t  :foreground &amp;quot;blue&amp;quot; :weight bold :height 1.2))&#xA;  (face-remap-add-relative  &#x27;cvs-filename-face  &#x27;(:inherit default :foreground &amp;quot;blue4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;cvs-handled-face  &#x27;(:inherit default :foreground &amp;quot;pink&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;cvs-header-face  &#x27;(:inherit default :bold t :foreground &amp;quot;blue4&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;cvs-marked-face  &#x27;(:inherit default :bold t :foreground &amp;quot;green3&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;cvs-msg-face  &#x27;(:inherit default :italic t :slant italic))&#xA;  (face-remap-add-relative  &#x27;cvs-need-action-face  &#x27;(:inherit default :foreground &amp;quot;orange&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;cvs-unknown-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;diary-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;diff-added-face  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;diff-changed-face  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;diff-context-face  &#x27;(:inherit default :foreground &amp;quot;grey50&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;diff-file-header-face  &#x27;(:inherit default :bold t :background &amp;quot;grey70&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;diff-function-face  &#x27;(:inherit default :foreground &amp;quot;grey50&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;diff-header-face  &#x27;(:inherit default :background &amp;quot;grey85&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;diff-hunk-header-face  &#x27;(:inherit default :background &amp;quot;grey85&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;diff-index-face  &#x27;(:inherit default :bold t :weight bold :background &amp;quot;grey70&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;diff-nonexistent-face  &#x27;(:inherit default :bold t :weight bold :background &amp;quot;grey70&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;diff-removed-face  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;dired-face-boring  &#x27;(:inherit default :foreground &amp;quot;RosyBrown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;dired-face-directory  &#x27;(:inherit default :foreground &amp;quot;Blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;dired-face-executable  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;dired-face-flagged  &#x27;(:inherit default :foreground &amp;quot;Red&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;dired-face-marked  &#x27;(:inherit default :foreground &amp;quot;Red&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;dired-face-permissions  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;dired-face-setuid  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;dired-face-socket  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;dired-face-symlink  &#x27;(:inherit default :foreground &amp;quot;Purple&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ebrowse-default-face  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;ebrowse-file-name-face  &#x27;(:inherit default :italic t :slant italic))&#xA;  (face-remap-add-relative  &#x27;ebrowse-member-attribute-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ebrowse-member-class-face  &#x27;(:inherit default :foreground &amp;quot;purple&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ebrowse-progress-face  &#x27;(:inherit default :background &amp;quot;blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ebrowse-root-class-face  &#x27;(:inherit default :bold t :foreground &amp;quot;blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;ebrowse-tree-mark-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-current-diff-face-A  &#x27;(:inherit default :background &amp;quot;pale green&amp;quot; :foreground &amp;quot;firebrick&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-current-diff-face-Ancestor  &#x27;(:inherit default :background &amp;quot;VioletRed&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-current-diff-face-B  &#x27;(:inherit default :background &amp;quot;Yellow&amp;quot; :foreground &amp;quot;DarkOrchid&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-current-diff-face-C  &#x27;(:inherit default :background &amp;quot;Pink&amp;quot; :foreground &amp;quot;Navy&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-even-diff-face-A  &#x27;(:inherit default :background &amp;quot;light grey&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-even-diff-face-Ancestor  &#x27;(:inherit default :background &amp;quot;Grey&amp;quot; :foreground &amp;quot;White&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-even-diff-face-B  &#x27;(:background &amp;quot;Grey&amp;quot; :foreground &amp;quot;White&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-even-diff-face-C  &#x27;(:inherit default :background &amp;quot;light grey&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-fine-diff-face-A  &#x27;(:inherit default :background &amp;quot;sky blue&amp;quot; :foreground &amp;quot;Navy&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-fine-diff-face-Ancestor  &#x27;(:inherit default :background &amp;quot;Green&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-fine-diff-face-B  &#x27;(:inherit default :background &amp;quot;cyan&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-fine-diff-face-C  &#x27;(:inherit default :background &amp;quot;Turquoise&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-odd-diff-face-A  &#x27;(:inherit default :background &amp;quot;Grey&amp;quot; :foreground &amp;quot;White&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-odd-diff-face-Ancestor  &#x27;(:inherit default :background &amp;quot;light grey&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-odd-diff-face-B  &#x27;(:inherit default :background &amp;quot;light grey&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;ediff-odd-diff-face-C  &#x27;(:inherit default :background &amp;quot;Grey&amp;quot; :foreground &amp;quot;White&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-archive-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Orchid&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-backup-face  &#x27;(:inherit default :foreground &amp;quot;OrangeRed&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-clutter-face  &#x27;(:inherit default :bold t :foreground &amp;quot;OrangeRed&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-directory-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-executable-face  &#x27;(:inherit default :bold t :foreground &amp;quot;ForestGreen&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-missing-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Red&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-product-face  &#x27;(:inherit default :foreground &amp;quot;OrangeRed&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-readonly-face  &#x27;(:inherit default :foreground &amp;quot;Brown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-special-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Magenta&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-symlink-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Dark Cyan&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-ls-unreadable-face  &#x27;(:inherit default :foreground &amp;quot;Grey30&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;eshell-prompt-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Red&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-test-failed-face  &#x27;(:inherit default :bold t :foreground &amp;quot;OrangeRed&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;eshell-test-ok-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Green&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;excerpt  &#x27;(:inherit default :italic t :slant italic))&#xA;  (face-remap-add-relative  &#x27;fixed  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;fixed-pitch  &#x27;(:inherit default :family &amp;quot;courier&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;flyspell-duplicate-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Gold3&amp;quot; :underline t :weight bold))&#xA;  (face-remap-add-relative  &#x27;flyspell-incorrect-face  &#x27;(:inherit default :bold t :foreground &amp;quot;OrangeRed&amp;quot; :underline t :weight bold))&#xA;  (face-remap-add-relative  &#x27;font-lock-builtin-face  &#x27;(:inherit default :foreground &amp;quot;Orchid&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;font-lock-comment-face  &#x27;(:inherit default :foreground &amp;quot;Firebrick&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;font-lock-constant-face  &#x27;(:inherit default :foreground &amp;quot;CadetBlue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;font-lock-doc-face  &#x27;(:inherit default :foreground &amp;quot;RosyBrown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;font-lock-doc-string-face  &#x27;(:inherit default :foreground &amp;quot;RosyBrown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;font-lock-function-name-face  &#x27;(:inherit default :foreground &amp;quot;Blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;font-lock-keyword-face  &#x27;(:inherit default :foreground &amp;quot;Purple&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;font-lock-preprocessor-face  &#x27;(:inherit default :foreground &amp;quot;CadetBlue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;font-lock-reference-face  &#x27;(:inherit default :foreground &amp;quot;Orchid&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;font-lock-string-face  &#x27;(:inherit default :foreground &amp;quot;RosyBrown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;font-lock-type-face  &#x27;(:inherit default :foreground &amp;quot;ForestGreen&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;font-lock-variable-name-face  &#x27;(:inherit default :foreground &amp;quot;DarkGoldenrod&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;font-lock-warning-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Red&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;fringe  &#x27;(:inherit default :background &amp;quot;grey95&amp;quot;))&#xA;&#xA;  (face-remap-add-relative  &#x27;header-line  &#x27;(:inherit default :box (:line-width -1 :style released-button) :background &amp;quot;grey90&amp;quot; :foreground &amp;quot;grey20&amp;quot; :box nil))&#xA;  (face-remap-add-relative  &#x27;hi-black-b  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;hi-black-hb  &#x27;(:inherit default :bold t  :weight bold :height 1.67))&#xA;  (face-remap-add-relative  &#x27;hi-blue  &#x27;(:inherit default :background &amp;quot;light blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;hi-blue-b  &#x27;(:inherit default :bold t :foreground &amp;quot;blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;hi-green  &#x27;(:inherit default :background &amp;quot;green&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;hi-green-b  &#x27;(:inherit default :bold t :foreground &amp;quot;green&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;hi-pink  &#x27;(:inherit default :background &amp;quot;pink&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;hi-red-b  &#x27;(:inherit default :bold t :foreground &amp;quot;red&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;hi-yellow  &#x27;(:inherit default :background &amp;quot;yellow&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;highlight  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;highlight-changes-delete-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot; :underline t))&#xA;  (face-remap-add-relative  &#x27;highlight-changes-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;holiday-face  &#x27;(:inherit default :background &amp;quot;pink&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;idlwave-help-link-face  &#x27;(:inherit default :foreground &amp;quot;Blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;idlwave-shell-bp-face  &#x27;(:inherit default :background &amp;quot;Pink&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;info-header-node  &#x27;(:inherit default :italic t :bold t :weight bold :slant italic :foreground &amp;quot;brown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;info-header-xref  &#x27;(:inherit default :bold t :weight bold :foreground &amp;quot;magenta4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;info-menu-5  &#x27;(:inherit default :foreground &amp;quot;red1&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;info-menu-header  &#x27;(:inherit default :bold t  :weight bold))&#xA;  (face-remap-add-relative  &#x27;info-node  &#x27;(:inherit default :italic t :bold t :foreground &amp;quot;brown&amp;quot; :slant italic :weight bold))&#xA;  (face-remap-add-relative  &#x27;info-xref  &#x27;(:inherit default :bold t :foreground &amp;quot;magenta4&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;isearch  &#x27;(:inherit default :background &amp;quot;magenta4&amp;quot; :foreground &amp;quot;lightskyblue1&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;isearch-lazy-highlight-face  &#x27;(:inherit default :background &amp;quot;paleturquoise&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;italic  &#x27;(:inherit default :italic t :slant italic))&#xA;  (face-remap-add-relative  &#x27;log-view-file-face  &#x27;(:inherit default :bold t :background &amp;quot;grey70&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;log-view-message-face  &#x27;(:inherit default :background &amp;quot;grey85&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;makefile-space-face  &#x27;(:inherit default :background &amp;quot;hotpink&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;menu  &#x27;(nil))&#xA;  (face-remap-add-relative  &#x27;message-cited-text-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;message-header-cc-face  &#x27;(:inherit default :foreground &amp;quot;MidnightBlue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;message-header-name-face  &#x27;(:inherit default :foreground &amp;quot;cornflower blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;message-header-newsgroups-face  &#x27;(:inherit default :italic t :bold t :foreground &amp;quot;blue4&amp;quot; :slant italic :weight bold))&#xA;  (face-remap-add-relative  &#x27;message-header-other-face  &#x27;(:inherit default :foreground &amp;quot;steel blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;message-header-subject-face  &#x27;(:inherit default :bold t :foreground &amp;quot;navy blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;message-header-to-face  &#x27;(:inherit default :bold t :foreground &amp;quot;MidnightBlue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;message-header-xheader-face  &#x27;(:inherit default :foreground &amp;quot;blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;message-mml-face  &#x27;(:inherit default :foreground &amp;quot;ForestGreen&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;message-separator-face  &#x27;(:inherit default :foreground &amp;quot;brown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;mode-line  &#x27;(:inherit default :background &amp;quot;grey75&amp;quot; :foreground &amp;quot;black&amp;quot; :box (:line-width -1 :style released-button)))&#xA;  (face-remap-add-relative  &#x27;mode-line-buffer-id  &#x27;(:inherit default :bold t :background &amp;quot;grey75&amp;quot; :foreground &amp;quot;black&amp;quot; :box (:line-width -1 :style released-button)))&#xA;  (face-remap-add-relative  &#x27;mode-line-mousable  &#x27;(:inherit default :background &amp;quot;grey75&amp;quot; :foreground &amp;quot;black&amp;quot; :box (:line-width -1 :style released-button)))&#xA;  (face-remap-add-relative  &#x27;mode-line-mousable-minor-mode  &#x27;(:inherit default :background &amp;quot;grey75&amp;quot; :foreground &amp;quot;black&amp;quot; :box (:line-width -1 :style released-button)))&#xA;  (face-remap-add-relative  &#x27;primary-selection  &#x27;(:inherit default :background &amp;quot;lightgoldenrod2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;reb-match-0  &#x27;(:inherit default :background &amp;quot;lightblue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;reb-match-1  &#x27;(:inherit default :background &amp;quot;aquamarine&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;reb-match-2  &#x27;(:inherit default :background &amp;quot;springgreen&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;reb-match-3  &#x27;(:inherit default :background &amp;quot;yellow&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;region  &#x27;(:inherit default :background &amp;quot;lightgoldenrod2&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;scroll-bar  &#x27;(:inherit default :background &amp;quot;grey75&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;secondary-selection  &#x27;(:inherit default :background &amp;quot;yellow&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;sh-heredoc-face  &#x27;(:inherit default :foreground &amp;quot;tan&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;show-paren-match-face  &#x27;(:inherit default :background &amp;quot;turquoise&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;show-paren-mismatch-face  &#x27;(:inherit default :background &amp;quot;purple&amp;quot; :foreground &amp;quot;white&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;show-tabs-space-face  &#x27;(:inherit default :foreground &amp;quot;yellow&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;show-tabs-tab-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;smerge-base-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;smerge-markers-face  &#x27;(:inherit default :background &amp;quot;grey85&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;smerge-mine-face  &#x27;(:inherit default :foreground &amp;quot;blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;smerge-other-face  &#x27;(:inherit default :foreground &amp;quot;darkgreen&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;speedbar-button-face  &#x27;(:inherit default :foreground &amp;quot;green4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;speedbar-directory-face  &#x27;(:inherit default :foreground &amp;quot;blue4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;speedbar-file-face  &#x27;(:inherit default :foreground &amp;quot;cyan4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;speedbar-highlight-face  &#x27;(:inherit default :background &amp;quot;green&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;speedbar-selected-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot; :underline t))&#xA;  (face-remap-add-relative  &#x27;speedbar-tag-face  &#x27;(:inherit default :foreground &amp;quot;brown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;strokes-char-face  &#x27;(:inherit default :background &amp;quot;lightgray&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-black  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-blackbg  &#x27;(:inherit default :stipple nil :background &amp;quot;black&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-blue  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-bluebg  &#x27;(:inherit default :stipple nil :background &amp;quot;blue&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-bold  &#x27;(:inherit default :bold t :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-cyan  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;cyan&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-cyanbg  &#x27;(:inherit default :stipple nil :background &amp;quot;cyan&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-default  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-default-bg  &#x27;(:inherit default :stipple nil :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-default-bg-inv  &#x27;(:inherit default :stipple nil :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-default-fg  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-default-fg-inv  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-green  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;green&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-greenbg  &#x27;(:inherit default :stipple nil :background &amp;quot;green&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-invisible  &#x27;(:inherit default :stipple nil :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-invisible-inv  &#x27;(:inherit default :stipple nil :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-magenta  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;magenta&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-magentabg  &#x27;(:inherit default :stipple nil :background &amp;quot;magenta&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-red  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-redbg  &#x27;(:inherit default :stipple nil :background &amp;quot;red&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-underline  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-white  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;white&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-whitebg  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-yellow  &#x27;(:inherit default :stipple nil :background &amp;quot;white&amp;quot; :foreground &amp;quot;yellow&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;term-yellowbg  &#x27;(:inherit default :stipple nil :background &amp;quot;yellow&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;tex-math-face  &#x27;(:inherit default :foreground &amp;quot;RosyBrown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;texinfo-heading-face  &#x27;(:inherit default :foreground &amp;quot;Blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;tool-bar  &#x27;(:inherit default :background &amp;quot;grey75&amp;quot; :foreground &amp;quot;black&amp;quot;&#xA;                          :box (:line-width 1 :style released-button)))&#xA;  (face-remap-add-relative  &#x27;tooltip  &#x27;(:inherit default :background &amp;quot;lightyellow&amp;quot; :foreground &amp;quot;black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;trailing-whitespace  &#x27;(:inherit default :background &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;underline  &#x27;(:inherit default :underline t))&#xA;  (face-remap-add-relative  &#x27;vcursor  &#x27;(:inherit default :background &amp;quot;cyan&amp;quot; :foreground &amp;quot;blue&amp;quot; :underline t))&#xA;  (face-remap-add-relative  &#x27;vhdl-font-lock-attribute-face  &#x27;(:inherit default :foreground &amp;quot;Orchid&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-font-lock-directive-face  &#x27;(:inherit default :foreground &amp;quot;CadetBlue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-font-lock-enumvalue-face  &#x27;(:inherit default :foreground &amp;quot;Gold4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-font-lock-function-face  &#x27;(:inherit default :foreground &amp;quot;Orchid4&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-font-lock-prompt-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Red&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;vhdl-font-lock-reserved-words-face  &#x27;(:inherit default :bold t :foreground &amp;quot;Orange&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;vhdl-font-lock-translate-off-face  &#x27;(:inherit default :background &amp;quot;LightGray&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-speedbar-architecture-face  &#x27;(:inherit default :foreground &amp;quot;Blue&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-speedbar-architecture-selected-face  &#x27;(:inherit default :foreground &amp;quot;Blue&amp;quot; :underline t))&#xA;  (face-remap-add-relative  &#x27;vhdl-speedbar-configuration-face  &#x27;(:inherit default :foreground &amp;quot;DarkGoldenrod&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-speedbar-configuration-selected-face  &#x27;(:inherit default :foreground &amp;quot;DarkGoldenrod&amp;quot; :underline t))&#xA;  (face-remap-add-relative  &#x27;vhdl-speedbar-instantiation-face  &#x27;(:inherit default :foreground &amp;quot;Brown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-speedbar-instantiation-selected-face  &#x27;(:inherit default :foreground &amp;quot;Brown&amp;quot; :underline t))&#xA;  (face-remap-add-relative  &#x27;vhdl-speedbar-package-face  &#x27;(:inherit default :foreground &amp;quot;Grey50&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;vhdl-speedbar-package-selected-face  &#x27;(:inherit default :foreground &amp;quot;Grey50&amp;quot; :underline t))&#xA;  (face-remap-add-relative  &#x27;viper-minibuffer-emacs-face  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;viper-minibuffer-insert-face  &#x27;(:inherit default :background &amp;quot;pink&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;viper-minibuffer-vi-face  &#x27;(:inherit default :background &amp;quot;grey&amp;quot; :foreground &amp;quot;DarkGreen&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;viper-replace-overlay-face  &#x27;(:inherit default :background &amp;quot;darkseagreen2&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;viper-search-face  &#x27;(:inherit default :background &amp;quot;khaki&amp;quot; :foreground &amp;quot;Black&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;widget-button-face  &#x27;(:inherit default :bold t :weight bold))&#xA;  (face-remap-add-relative  &#x27;widget-button-pressed-face  &#x27;(:inherit default :foreground &amp;quot;red&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;widget-documentation-face  &#x27;(:inherit default :foreground &amp;quot;dark green&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;widget-field-face  &#x27;(:inherit default :background &amp;quot;gray85&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;widget-inactive-face  &#x27;(:inherit default :foreground &amp;quot;dim gray&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;widget-single-line-field-face  &#x27;(:inherit default :background &amp;quot;gray85&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;woman-addition-face  &#x27;(:inherit default :foreground &amp;quot;orange&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;woman-bold-face  &#x27;(:inherit default :bold t :foreground &amp;quot;blue&amp;quot; :weight bold))&#xA;  (face-remap-add-relative  &#x27;woman-italic-face  &#x27;(:inherit default :italic t :foreground &amp;quot;red&amp;quot; :underline t :slant italic))&#xA;  (face-remap-add-relative  &#x27;woman-unknown-face  &#x27;(:inherit default :foreground &amp;quot;brown&amp;quot;))&#xA;  (face-remap-add-relative  &#x27;zmacs-region  &#x27;(:inherit default :background &amp;quot;lightgoldenrod2&amp;quot;))&#xA;  )&#xA;(add-hook &#x27;org-mode-hook &#x27;my-org-mode-faces-emacs-21)&#xA;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;themes I modified:&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/pygJx.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/pygJx.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;correct emacs 21 themes:&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/v37Ba.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/v37Ba.png&quot; alt=&quot;enter image description here&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;
  345.        </summary>
  346.    </entry>
  347.    <entry>
  348.        <id>https://stackoverflow.com/q/77358278</id>
  349.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  350.        <title type="text">Error in Emacs: ob-ipython-auto-configure-kernels: Wrong type argument: listp, 0.0</title>
  351.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  352.            <category scheme="https://stackoverflow.com/tags" term="ipython" />
  353.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  354.        <author>
  355.            <name>Aleksander Nikitin</name>
  356.            <uri>https://stackoverflow.com/users/11825067</uri>
  357.        </author>
  358.        <link rel="alternate" href="https://stackoverflow.com/questions/77358278/error-in-emacs-ob-ipython-auto-configure-kernels-wrong-type-argument-listp-0" />
  359.        <published>2023-10-25T09:31:20Z</published>
  360.        <updated>2023-10-25T09:31:20Z</updated>
  361.        <summary type="html">
  362.            &lt;p&gt;In Emacs, when saving org-mode files, I constantly receive the message:&#xA;&lt;code&gt;ob-ipython-auto-configure-kernels: Wrong type argument: listp, 0.0&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;The result of &lt;code&gt;toggle-debug-on-error&lt;/code&gt; is:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Debugger entered--Lisp error: (wrong-type-argument listp 0.0)&#xA;  ob-ipython--get-kernels()&#xA;  ob-ipython-auto-configure-kernels()&#xA;  run-hooks(change-major-mode-after-body-hook text-mode-hook outline-mode-hook org-mode-hook)&#xA;  apply(run-hooks (change-major-mode-after-body-hook text-mode-hook outline-mode-hook org-mode-hook))&#xA;  run-mode-hooks(org-mode-hook)&#xA;  org-mode()&#xA;  bibtex-completion-candidates()&#xA;  #f(compiled-function (event) #&amp;lt;bytecode 0x158e23bbe639&amp;gt;)(((1 . 0) deleted &amp;quot;/home/alex/mybox/org/literatura.org&amp;quot;))&#xA;  file-notify--handle-event((1 . 0) (created) &amp;quot;.#stones.org&amp;quot; 0)&#xA;  file-notify--callback-inotify(((1 . 0) (create) &amp;quot;.#stones.org&amp;quot; 0))&#xA;  file-notify-handle-event((file-notify ((1 . 0) (create) &amp;quot;.#stones.org&amp;quot; 0) file-notify--callback-inotify))&#xA;  funcall-interactively(file-notify-handle-event (file-notify ((1 . 0) (create) &amp;quot;.#stones.org&amp;quot; 0) file-notify--callback-inotify))&#xA;  call-interactively(file-notify-handle-event nil [(file-notify ((1 . 0) (create) &amp;quot;.#stones.org&amp;quot; 0) file-notify--callback-inotify)])&#xA;  command-execute(file-notify-handle-event nil [(file-notify ((1 . 0) (create) &amp;quot;.#stones.org&amp;quot; 0) file-notify--callback-inotify)] t)&#xA;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;The problem occurred on a newly installed Ubuntu. On another computer with the same Emacs settings, this error does not appear.&lt;/p&gt;&#xA;
  363.        </summary>
  364.    </entry>
  365.    <entry>
  366.        <id>https://stackoverflow.com/q/77335396</id>
  367.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  368.        <title type="text">How to insert date or other `Template expansion` in org capture when no &quot;*&quot; prompt in file?</title>
  369.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  370.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  371.        <author>
  372.            <name>cwind</name>
  373.            <uri>https://stackoverflow.com/users/7334572</uri>
  374.        </author>
  375.        <link rel="alternate" href="https://stackoverflow.com/questions/77335396/how-to-insert-date-or-other-template-expansion-in-org-capture-when-no-prom" />
  376.        <published>2023-10-21T09:17:56Z</published>
  377.        <updated>2023-10-21T09:17:56Z</updated>
  378.        <summary type="html">
  379.            &lt;p&gt;I want to insert the date in the capture template, but I do not want to add a &amp;quot;*&amp;quot; at the beginning of the file.&#xA;How do I achieve this?&lt;/p&gt;&#xA;&lt;p&gt;An example as follows, &lt;code&gt;C-c c p p&lt;/code&gt; work fine, but &lt;code&gt;C-c c p l&lt;/code&gt; display &amp;quot;Template is not a valid Org entry or tree&amp;quot;.&lt;/p&gt;&#xA;&lt;pre class=&quot;lang-lisp prettyprint-override&quot;&gt;&lt;code&gt;(global-set-key &amp;quot;\C-cc&amp;quot; &#x27;org-capture)&#xA;(setq org-capture-templates   &#xA;      &#x27;(&#xA;&#xA;    (&amp;quot;p&amp;quot; &amp;quot;programme&amp;quot;)&#xA;    (&amp;quot;pl&amp;quot; &amp;quot;perl&amp;quot; entry&#xA;     (file (lambda ()  (let ((name (read-string &amp;quot;FileName: &amp;quot; &amp;quot;&amp;lt;perl&amp;gt; &amp;quot;)))&#xA;                 (expand-file-name (format &amp;quot;%s.org&amp;quot; name)&#xA;                           &amp;quot;~/syncthing/notes/perl&amp;quot;))))&#xA;     &amp;quot;Date&#xFF1A;%U\nFrom: %?\n\n&amp;quot;)&#xA;    (&amp;quot;pp&amp;quot; &amp;quot;python&amp;quot; entry&#xA;     (file (lambda ()  (let ((name (read-string &amp;quot;FileName: &amp;quot; &amp;quot;&amp;lt;python&amp;gt; &amp;quot;)))&#xA;                 (expand-file-name (format &amp;quot;%s.org&amp;quot; name)&#xA;                           &amp;quot;~/syncthing/notes/python&amp;quot;))))&#xA;     &amp;quot;* \nDate&#xFF1A;%U\nFrom: %?\n\n&amp;quot;)&#xA;&#xA;    ))&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  380.        </summary>
  381.    </entry>
  382.    <entry>
  383.        <id>https://stackoverflow.com/q/77332358</id>
  384.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  385.        <title type="text">How can I adjust the fonts and sizes of bullets in org superstar?</title>
  386.            <category scheme="https://stackoverflow.com/tags" term="fonts" />
  387.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  388.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  389.            <category scheme="https://stackoverflow.com/tags" term="bullet" />
  390.        <author>
  391.            <name>Sam7919</name>
  392.            <uri>https://stackoverflow.com/users/700648</uri>
  393.        </author>
  394.        <link rel="alternate" href="https://stackoverflow.com/questions/77332358/how-can-i-adjust-the-fonts-and-sizes-of-bullets-in-org-superstar" />
  395.        <published>2023-10-20T16:05:27Z</published>
  396.        <updated>2023-10-20T17:04:06Z</updated>
  397.        <summary type="html">
  398.            &lt;p&gt;By starting (Gnu/vanilla) Emacs with the &lt;code&gt;.emacs&lt;/code&gt; at the bottom of this file I get&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;headings and subheadings that use larger fonts, obviating the need to typeset into HTML or LaTeX for pleasant reading, and&lt;/li&gt;&#xA;&lt;li&gt;improved fonts for bullets.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/hFNy3.jpg&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/hFNy3.jpg&quot; alt=&quot;superstar 1&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;But there are two problems:&lt;/p&gt;&#xA;&lt;ol start=&quot;3&quot;&gt;&#xA;&lt;li&gt;the height of the bullet is larger than the heading, and&lt;/li&gt;&#xA;&lt;li&gt;the bullets are similar, unlike what the&#xA;&lt;a href=&quot;https://github.com/integral-dw/org-superstar-mode&quot; rel=&quot;nofollow noreferrer&quot;&gt;reference page&lt;/a&gt;&#xA;promises.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/9DTic.jpg&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/9DTic.jpg&quot; alt=&quot;superstar 2&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;How can I adjust the fonts and sizes of bullets in org superstar?&lt;/p&gt;&#xA;&lt;p&gt;I&#x27;m on macOS Ventura. You&#x27;ll need to adjust &lt;code&gt;Monaco&lt;/code&gt; below to your favorite font to start with this &lt;code&gt;.emacs&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;(add-to-list &#x27;default-frame-alist &#x27;(background-color . &amp;quot;black&amp;quot;))&#xA;(add-to-list &#x27;default-frame-alist &#x27;(foreground-color . &amp;quot;white&amp;quot;))&#xA;(blink-cursor-mode 0)&#xA;&#xA;(defvar org-startup-indented)&#xA;(setq org-startup-indented t)&#xA;(defvar org-indent-indentation-per-level)&#xA;(setq org-indent-indentation-per-level 4)&#xA;&#xA;(set-frame-font &amp;quot;Monaco 32&amp;quot;)&#xA;&#xA;(require &#x27;org-superstar)&#xA;(add-hook &#x27;org-mode-hook (lambda () (org-superstar-mode 1)))&#xA;&#xA;(custom-set-faces&#xA;  &#x27;(org-level-1 ((t (:inherit outline-1 :height 2.0))))&#xA;  &#x27;(org-level-2 ((t (:inherit outline-2 :height 1.5))))&#xA;  &#x27;(org-level-3 ((t (:inherit outline-3 :height 1.2))))&#xA;  &#x27;(org-level-4 ((t (:inherit outline-4 :height 1.0))))&#xA;  &#x27;(org-level-5 ((t (:inherit outline-5 :height 1.0))))&#xA;  )&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;
  399.        </summary>
  400.    </entry>
  401.    <entry>
  402.        <id>https://stackoverflow.com/q/77286103</id>
  403.        <re:rank scheme="https://stackoverflow.com">1</re:rank>
  404.        <title type="text">Is it possible to load modes in interactive functions before the interactive prompt is executed?</title>
  405.            <category scheme="https://stackoverflow.com/tags" term="require" />
  406.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  407.            <category scheme="https://stackoverflow.com/tags" term="interactive" />
  408.            <category scheme="https://stackoverflow.com/tags" term="spacemacs" />
  409.        <author>
  410.            <name>JJdasWIESEL</name>
  411.            <uri>https://stackoverflow.com/users/7356819</uri>
  412.        </author>
  413.        <link rel="alternate" href="https://stackoverflow.com/questions/77286103/is-it-possible-to-load-modes-in-interactive-functions-before-the-interactive-pro" />
  414.        <published>2023-10-13T08:10:38Z</published>
  415.        <updated>2023-10-16T07:04:32Z</updated>
  416.        <summary type="html">
  417.            &lt;p&gt;This is a follow-up question to this &lt;a href=&quot;https://stackoverflow.com/questions/77249558/how-can-i-provide-a-custom-function-depending-on-major-mode-variables-right-af&quot;&gt;original question&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I try to provide a custom interactive function, requiring the loading of another package, right after startup of Spacemacs. My problem is that the interactive call seems to be executed always at the beginning of the function call, preventing me from using not yet loaded mode variables within the interactive call.&lt;/p&gt;&#xA;&lt;p&gt;Example: I would like to access (with completion) my org-agenda-files interactively, but org-agenda-files are defined only after org-mode has been loaded. So the idea at the moment looks like this:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;;;;###autoload&#xA;(defun my/org-agenda-find-file(file-path)&#xA;  (require &#x27;org)&#xA;  (interactive (list&#xA;                (completing-read &amp;quot;Choose agenda file: &amp;quot; org-agenda-files)))&#xA;  (find-file file-path)&#xA;  )&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Unfortunately, calling this function interactively after startup results in:&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;list: Symbol&#x2019;s value as variable is void: org-agenda-files&lt;/em&gt;,&lt;/p&gt;&#xA;&lt;p&gt;as it does without the &amp;quot;require&amp;quot; statement.&lt;/p&gt;&#xA;&lt;p&gt;I got inspired by this part of the &lt;a href=&quot;https://www.gnu.org/software/emacs/manual/html_node/elisp/Named-Features.html&quot; rel=&quot;nofollow noreferrer&quot;&gt;manual&lt;/a&gt;, but did not find a similar example specifically for interactive functions.&lt;/p&gt;&#xA;&lt;p&gt;Is it possible to achieve what I want here with interactive functions?&lt;/p&gt;&#xA;&lt;p&gt;Thanks a lot for your contributions!&lt;/p&gt;&#xA;
  418.        </summary>
  419.    </entry>
  420.    <entry>
  421.        <id>https://stackoverflow.com/q/77249558</id>
  422.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  423.        <title type="text">How can I provide a custom function, depending on major-mode variables, right after the startup of Spacemacs?</title>
  424.            <category scheme="https://stackoverflow.com/tags" term="elisp" />
  425.            <category scheme="https://stackoverflow.com/tags" term="startup" />
  426.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  427.            <category scheme="https://stackoverflow.com/tags" term="custom-function" />
  428.            <category scheme="https://stackoverflow.com/tags" term="spacemacs" />
  429.        <author>
  430.            <name>JJdasWIESEL</name>
  431.            <uri>https://stackoverflow.com/users/7356819</uri>
  432.        </author>
  433.        <link rel="alternate" href="https://stackoverflow.com/questions/77249558/how-can-i-provide-a-custom-function-depending-on-major-mode-variables-right-af" />
  434.        <published>2023-10-07T11:27:07Z</published>
  435.        <updated>2023-10-08T11:46:55Z</updated>
  436.        <summary type="html">
  437.            &lt;p&gt;I recently started to write some elisp code, mostly to customize my spacemacs -&amp;gt; absolute beginner. Although there are a many different sources of &amp;quot;how to customize...&amp;quot; around, I still am confused about the following.&lt;/p&gt;&#xA;&lt;p&gt;The situation is that I would like to have a custom function ready at startup of spacemacs, but this function is depending on some major mode variables. What is the best way to achieve that, without having to open a file triggering loading this major mode first?&lt;/p&gt;&#xA;&lt;p&gt;A specific example:&#xA;I would like to access (with completion) my org-agenda-files interactively, so I wrote this function&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  (defun my/org-agenda-find-file(file-path)&#xA;    (interactive (list&#xA;                  (completing-read &amp;quot;Choose agenda file: &amp;quot; org-agenda-files)))&#xA;    (find-file file-path)&#xA;    )&#xA;&#xA;# Binding &#xA; (spacemacs/set-leader-keys &amp;quot;oof&amp;quot; #&#x27;my/org-agenda-find-file)&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;and put it in an custom my_org_config.el, which gets loaded in .spacemacs/dotspaceamcs/user-conifg().&#xA;So far so good, works as expected if org-mode has been loaded at least once before.&lt;/p&gt;&#xA;&lt;p&gt;In case of a freshly started spacemacs, trying to use my function, I get the error that&#xA;&amp;quot;org-agenda-files&amp;quot; is not existing. So it seems that &amp;quot;org-agenda-files&amp;quot; is set during the loading of org-mode.&lt;/p&gt;&#xA;&lt;p&gt;One working solution is to add the &amp;quot;require &#x27;org&amp;quot; statement before my function, but I&#x27;m not sure if this is a very good way of handling that.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;(require &#x27;org)&#xA;(defun my/org-agenda-find-file(file-path)&#xA;  (interactive (list&#xA;                (completing-read &amp;quot;Choose agenda file: &amp;quot; org-agenda-files)))&#xA;  (find-file file-path)&#xA;  )&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Is there a better way of doing that, maybe through a key-word or a call within the function itself, or is this one of the cases where require and spacemacs go together fine :)?&lt;/p&gt;&#xA;&lt;p&gt;Any help is appreciated! Thank you.&lt;/p&gt;&#xA;
  438.        </summary>
  439.    </entry>
  440.    <entry>
  441.        <id>https://stackoverflow.com/q/77054119</id>
  442.        <re:rank scheme="https://stackoverflow.com">1</re:rank>
  443.        <title type="text">Using org-element to parse headlines matching a specific tag (or property)</title>
  444.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  445.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  446.            <category scheme="https://stackoverflow.com/tags" term="word-count" />
  447.        <author>
  448.            <name>matogoro</name>
  449.            <uri>https://stackoverflow.com/users/14975876</uri>
  450.        </author>
  451.        <link rel="alternate" href="https://stackoverflow.com/questions/77054119/using-org-element-to-parse-headlines-matching-a-specific-tag-or-property" />
  452.        <published>2023-09-06T17:32:21Z</published>
  453.        <updated>2023-09-07T21:15:22Z</updated>
  454.        <summary type="html">
  455.            &lt;p&gt;I&#x27;m trying to write custom Elisp functions for word counts based on certain parts of an &lt;code&gt;org-mode&lt;/code&gt; buffer, and I was wondering if there is a good way for &lt;code&gt;org-element&lt;/code&gt; to parse all headlines matching a certain tag (or property).  More specifically, I have a buffer like this:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;TITLE: My manuscript&#xA;&#xA;Authors, affiliations, etc.&#xA;&#xA;* Abstract       :abstract:&#xA;&#xA;Text in the abstract.&#xA;&#xA;* Introduction   :body:&#xA;&#xA;Some sample text goes here.&#xA;&#xA;* Methods        :body:&#xA;&#xA;Some sample text goes here.&#xA;&#xA;* Results        :body:&#xA;&#xA;Some sample text goes here.&#xA;&#xA;* Discussion     :body:&#xA;&#xA;Some sample text goes here.&#xA;&#xA;* References     :refs:&#xA;&#xA;References go here.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;And I want to get a word count for all headers matching the &lt;code&gt;:body:&lt;/code&gt; tag (i.e., 20).  So far, I have been using the functions from &lt;a href=&quot;https://emacs.stackexchange.com/questions/69924/count-words-under-subtree-ignoring-the-properties-drawer-and-the-subheading&quot;&gt;this answer&lt;/a&gt;, which do a great job at returning a word count for the headline at point:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;(require &#x27;cl-lib)&#xA;(require &#x27;org-element)&#xA;&#xA;(defun org-element-parse-headline (&amp;amp;optional granularity visible-only)&#xA;  &amp;quot;Parse current headline.&#xA;GRANULARITY and VISIBLE-ONLY are like the args of `org-element-parse-buffer&#x27;.&amp;quot;&#xA;  (let ((level (org-current-level)))&#xA;    (org-element-map&#xA;    (org-element-parse-buffer granularity visible-only)&#xA;    &#x27;headline&#xA;      (lambda (el)&#xA;    (and&#xA;     (eq (org-element-property :level el) level)&#xA;     (&amp;lt;= (org-element-property :begin el) (point))&#xA;     (&amp;lt;= (point) (org-element-property :end el))&#xA;     el))&#xA;      nil &#x27;first-match &#x27;no-recursion)))&#xA;&#xA;(cl-defun org&#x2B;-count-words-of-heading (&amp;amp;key (worthy &#x27;(paragraph bold italic underline code footnote-reference link strike-through subscript superscript table table-row table-cell))&#xA;                        (no-recursion nil))&#xA;  &amp;quot;Count words in the section of the current heading.&#xA;WORTHY is a list of things worthy to be counted.&#xA;This list should at least include the symbols:&#xA;paragraph, bold, italic, underline and strike-through.&#xA;&#xA;If NO-RECURSION is non-nil don&#x27;t count the words in subsections.&amp;quot;&#xA;  (interactive (and current-prefix-arg&#xA;            (list :no-recursion t)))&#xA;  (let ((word-count 0))&#xA;    (org-element-map&#xA;    (org-element-contents (org-element-parse-headline))&#xA;    &#x27;(paragraph table)&#xA;      (lambda (par)&#xA;    (org-element-map&#xA;        par&#xA;        worthy&#xA;        (lambda (el)&#xA;          (cl-incf&#xA;           word-count&#xA;           (cl-loop&#xA;        for txt in (org-element-contents el)&#xA;        when (eq (org-element-type txt) &#x27;plain-text)&#xA;        sum&#xA;        (with-temp-buffer&#xA;          (insert txt)&#xA;          (count-words (point-min) (point-max))))&#xA;           ))))&#xA;      nil nil (and no-recursion &#x27;headline)&#xA;      )&#xA;      (when (called-interactively-p &#x27;any)&#xA;      (message &amp;quot;Word count in section: %d&amp;quot; word-count))&#xA;    word-count))&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;I imagine I have to tweak the &lt;code&gt;org-element-parse-headline&lt;/code&gt; function to match tags instead of grabbing the headline at point, but does anyone know how to do this?  Thanks!&lt;/p&gt;&#xA;
  456.        </summary>
  457.    </entry>
  458.    <entry>
  459.        <id>https://stackoverflow.com/q/77041545</id>
  460.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  461.        <title type="text">Emacs org-mode: Find Tags in Folder</title>
  462.            <category scheme="https://stackoverflow.com/tags" term="emacs" />
  463.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  464.        <author>
  465.            <name>Diomoid</name>
  466.            <uri>https://stackoverflow.com/users/3752444</uri>
  467.        </author>
  468.        <link rel="alternate" href="https://stackoverflow.com/questions/77041545/emacs-org-mode-find-tags-in-folder" />
  469.        <published>2023-09-05T03:11:12Z</published>
  470.        <updated>2023-09-05T03:11:12Z</updated>
  471.        <summary type="html">
  472.            &lt;p&gt;I am learning to use Emacs and Org Mode.&lt;/p&gt;&#xA;&lt;p&gt;I was initially getting no results when I clicked on a tag. I solved my own problem by doing &lt;code&gt;C-c [&lt;/code&gt; (&lt;code&gt;Ctrl-c&lt;/code&gt; then &lt;code&gt;[&lt;/code&gt;) which adds the file to the &#x27;agenda&#x27; with the &lt;a href=&quot;https://orgmode.org/manual/Agenda-Files.html#index-C_002dc-_005b&quot; rel=&quot;nofollow noreferrer&quot;&gt;org-agenda-file-to-front command&lt;/a&gt;... But is this the right way to do this, you have to manually add all files you want searched to the &#x27;agenda&#x27;?&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://stackoverflow.com/questions/11384516/how-to-make-all-org-files-under-a-folder-added-in-agenda-list-automatically&quot;&gt;According to this post&lt;/a&gt; you can run a lisp command to add all the .org files in a folder but it doesn&#x27;t add any files added after the command is ran. It should not be this difficult to get a list of tags in this and other files... am I heading in the wrong direction?&lt;/p&gt;&#xA;&lt;p&gt;Simple example:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;* Things to do&#xA;** Eat                                                          :plate:chair:&#xA;*** Spaghetti&#xA;** Code                                                      :computer:chair:&#xA;** Sleep&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/ycSNQ.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/ycSNQ.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;I can click on the :chair: tag on the right, and I expect that I would&#xA;have a list of headlines that use that clicked tag in another buffer,&#xA;but nothing was returned for &amp;quot;Headlines with TAGS match: chair&amp;quot; unless&#xA;the file is added to the &#x27;agenda&#x27;.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;I found &lt;a href=&quot;https://stackoverflow.com/questions/24966333/emacs-org-mode-tags-not-found&quot;&gt;a question that seems to have the same issue&lt;/a&gt; but you still have to run it each time you add a file. Can someone provide a simplified explanation for what technique/setup is needed to just click on a tag and have all the org files in a folder be searched for that tag?&lt;/p&gt;&#xA;
  473.        </summary>
  474.    </entry>
  475.    <entry>
  476.        <id>https://stackoverflow.com/q/77038864</id>
  477.        <re:rank scheme="https://stackoverflow.com">1</re:rank>
  478.        <title type="text">How can a setupfile being considered as safe while exporting through a batch process?</title>
  479.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  480.        <author>
  481.            <name>lukascbossert</name>
  482.            <uri>https://stackoverflow.com/users/8584652</uri>
  483.        </author>
  484.        <link rel="alternate" href="https://stackoverflow.com/questions/77038864/how-can-a-setupfile-being-considered-as-safe-while-exporting-through-a-batch-pro" />
  485.        <published>2023-09-04T15:04:52Z</published>
  486.        <updated>2023-09-04T15:04:52Z</updated>
  487.        <summary type="html">
  488.            &lt;p&gt;In my &lt;code&gt;org-mode&lt;/code&gt;-file I have a source cell which contains the various formats I want to export this file to.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;title: How to export this document?&#xA;#&#x2B;author: me&#xA;#&#x2B;SETUPFILE: https://fniessen.github.io/org-html-themes/org/theme-readtheorg.setup&#xA;&#xA;* Export feature&#xA;#&#x2B;BEGIN_SRC sh :exports code :results none :var filename=(buffer-name)&#xA;emacs -Q &amp;quot;$filename&amp;quot; --batch -f org-html-export-to-html --kill&#xA;emacs -Q &amp;quot;$filename&amp;quot; --batch -f org-ascii-export-to-ascii --kill&#xA;emacs -Q &amp;quot;$filename&amp;quot; --batch -f org-latex-export-to-pdf --kill&#xA;#&#x2B;END_SRC&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;When I execute the cell I get the error:&#xA;&lt;code&gt;The remote resource &amp;quot;https://fniessen.github.io/org-html-themes/org/theme-readtheorg.setup&amp;quot; is considered unsafe, and will not be downloaded.&lt;/code&gt;&#xA;The export into html is now a plain export.&lt;/p&gt;&#xA;&lt;p&gt;How can I have the file being exported to html using the setup file?&lt;/p&gt;&#xA;
  489.        </summary>
  490.    </entry>
  491.    <entry>
  492.        <id>https://stackoverflow.com/q/77029902</id>
  493.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  494.        <title type="text">Why is grep only partially working in an org-mode source block?</title>
  495.            <category scheme="https://stackoverflow.com/tags" term="grep" />
  496.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  497.        <author>
  498.            <name>lukascbossert</name>
  499.            <uri>https://stackoverflow.com/users/8584652</uri>
  500.        </author>
  501.        <link rel="alternate" href="https://stackoverflow.com/questions/77029902/why-is-grep-only-partially-working-in-an-org-mode-source-block" />
  502.        <published>2023-09-02T20:19:14Z</published>
  503.        <updated>2023-09-11T00:11:32Z</updated>
  504.        <summary type="html">
  505.            &lt;p&gt;This is a &lt;a href=&quot;https://stackoverflow.com/questions/77029806/how-can-i-get-the-results-from-one-org-mode-cell-as-a-table-to-process-in-anothe&quot;&gt;follow up question&lt;/a&gt; about cleaning a SPARQL-dataset.&lt;/p&gt;&#xA;&lt;p&gt;The dataset is gained by this cell:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;name: raw-dataset&#xA;#&#x2B;BEGIN_SRC sparql :url https://query.wikidata.org/sparql :format text/csv :cache yes :exports both&#xA;SELECT ?wLabel ?pLabel&#xA;WHERE&#xA;{&#xA;  ?p wdt:P31 wd:Q98270496 .&#xA;  ?p wdt:P1416 ?w .&#xA;  SERVICE wikibase:label { bd:serviceParam wikibase:language &amp;quot;en&amp;quot; . }&#xA;}&#xA;ORDER BY ASC(?wLabel) ASC(?pLabel)&#xA;LIMIT 10&#xA;#&#x2B;END_SRC&#xA;&#xA;&#xA;#&#x2B;RESULTS[7981b64721a5ffc448aa7da773ce07ea8dbaf8ac]: raw-dataset&#xA;| wLabel                                        | pLabel       |&#xA;|-----------------------------------------------&#x2B;--------------|&#xA;| Q105775472                                    | NFDI4Health  |&#xA;| Q1117007                                      | NFDI4Health  |&#xA;| Q115254989                                    | NFDI4Objects |&#xA;| Q1205424                                      | NFDI4Objects |&#xA;| Q17575706                                     | NFDI4Objects |&#xA;| Academy of Sciences and Humanities in Hamburg | Text&#x2B;        |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Culture |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Memory  |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Objects |&#xA;| Academy of Sciences and Literature Mainz      | Text&#x2B;        |&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;As a second step I take a look at the data using &lt;code&gt;zsh&lt;/code&gt;:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;begin_src sh :var data=raw-dataset :shebang &amp;quot;#!/opt/homebrew/bin/zsh&amp;quot; :exports both&#xA;echo ${data}&#xA;#&#x2B;end_src&#xA;&#xA;#&#x2B;RESULTS:&#xA;| Q105775472                                    | NFDI4Health  |&#xA;| Q1117007                                      | NFDI4Health  |&#xA;| Q115254989                                    | NFDI4Objects |&#xA;| Q1205424                                      | NFDI4Objects |&#xA;| Q17575706                                     | NFDI4Objects |&#xA;| Academy of Sciences and Humanities in Hamburg | Text&#x2B;        |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Culture |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Memory  |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Objects |&#xA;| Academy of Sciences and Literature Mainz      | Text&#x2B;        |&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;All fine and I can start with the cleaning part, getting rid of all lines containing &lt;code&gt;Q....&lt;/code&gt;:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;begin_src sh :var data=raw-dataset :exports both :shebang &amp;quot;#!/opt/homebrew/bin/zsh&amp;quot;&#xA;echo ${data} | grep -L -E &amp;quot;Q[1-9]&amp;quot;&#xA;#&#x2B;end_src&#xA;&#xA;#&#x2B;RESULTS:&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Somehow using the &lt;code&gt;-L&lt;/code&gt; does not work.&#xA;But without (&lt;code&gt;-L&lt;/code&gt;) I get the results as expected from the code:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;begin_src sh :var data=raw-dataset :shebang &amp;quot;#!/opt/homebrew/bin/zsh&amp;quot; :exports both&#xA;echo ${data} | grep -E &amp;quot;Q[1-9]&amp;quot;&#xA;#&#x2B;end_src&#xA;&#xA;#&#x2B;RESULTS:&#xA;| Q105775472 | NFDI4Health  |&#xA;| Q1117007   | NFDI4Health  |&#xA;| Q115254989 | NFDI4Objects |&#xA;| Q1205424   | NFDI4Objects |&#xA;| Q17575706  | NFDI4Objects |&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;em&gt;Question&lt;/em&gt;: Why is &lt;code&gt;-L&lt;/code&gt; not working and how can I get rid of the lines starting with &lt;code&gt;Q....&lt;/code&gt;?&lt;/p&gt;&#xA;
  506.        </summary>
  507.    </entry>
  508.    <entry>
  509.        <id>https://stackoverflow.com/q/77029806</id>
  510.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  511.        <title type="text">How can I get the results from one org-mode cell as a table to process in another?</title>
  512.            <category scheme="https://stackoverflow.com/tags" term="sparql" />
  513.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  514.        <author>
  515.            <name>lukascbossert</name>
  516.            <uri>https://stackoverflow.com/users/8584652</uri>
  517.        </author>
  518.        <link rel="alternate" href="https://stackoverflow.com/questions/77029806/how-can-i-get-the-results-from-one-org-mode-cell-as-a-table-to-process-in-anothe" />
  519.        <published>2023-09-02T19:45:09Z</published>
  520.        <updated>2023-09-02T20:07:48Z</updated>
  521.        <summary type="html">
  522.            &lt;p&gt;In my document I create a first cell block for retrieving data:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;name: raw-dataset&#xA;#&#x2B;BEGIN_SRC sparql :url https://query.wikidata.org/sparql :format text/csv :cache yes :exports both&#xA;SELECT ?wLabel ?pLabel&#xA;WHERE&#xA;{&#xA;  ?p wdt:P31 wd:Q98270496 .&#xA;  ?p wdt:P1416 ?w .&#xA;  SERVICE wikibase:label { bd:serviceParam wikibase:language &amp;quot;en&amp;quot; . }&#xA;}&#xA;ORDER BY ASC(?wLabel) ASC(?pLabel)&#xA;LIMIT 10&#xA;#&#x2B;END_SRC&#xA;&#xA;#&#x2B;RESULTS[7981b64721a5ffc448aa7da773ce07ea8dbaf8ac]: raw-dataset&#xA;| wLabel                                        | pLabel       |&#xA;|-----------------------------------------------&#x2B;--------------|&#xA;| Q105775472                                    | NFDI4Health  |&#xA;| Q1117007                                      | NFDI4Health  |&#xA;| Q115254989                                    | NFDI4Objects |&#xA;| Q1205424                                      | NFDI4Objects |&#xA;| Q17575706                                     | NFDI4Objects |&#xA;| Academy of Sciences and Humanities in Hamburg | Text&#x2B;        |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Culture |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Memory  |&#xA;| Academy of Sciences and Literature Mainz      | NFDI4Objects |&#xA;| Academy of Sciences and Literature Mainz      | Text&#x2B;        |&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;This works as expected but I want to get rid of those lines starting with &lt;code&gt;Q1....&lt;/code&gt;.&#xA;For didactical reasons I &lt;em&gt;do not&lt;/em&gt; want to do this in the SPARQL query but in a second cell.&lt;/p&gt;&#xA;&lt;p&gt;Now the trouble starts.&#xA;When I read in the results from &lt;code&gt;raw-dataset&lt;/code&gt; everything is written in &lt;em&gt;one line&lt;/em&gt;. There are no end of line characters etc. used.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;begin_src sh :var data=raw-dataset :exports both :results output raw&#xA;echo ${data}&#xA;#&#x2B;end_src&#xA;&#xA;#&#x2B;RESULTS:&#xA;Q105775472 NFDI4Health Q1117007 NFDI4Health Q115254989 NFDI4Objects Q1205424 NFDI4Objects Q17575706 NFDI4Objects Academy of Sciences and Humanities in Hamburg Text&#x2B; Academy of Sciences and Literature Mainz NFDI4Culture Academy of Sciences and Literature Mainz NFDI4Memory Academy of Sciences and Literature Mainz NFDI4Objects Academy of Sciences and Literature Mainz Text&#x2B;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;So, that is why obviously my attempt to clean the data set with e.g. &lt;code&gt;grep&lt;/code&gt; cannot work&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;#&#x2B;begin_src sh :var data=raw-dataset :exports both&#xA;echo ${data} | grep -L -E &amp;quot;Q[1-9]&amp;quot;&#xA;#&#x2B;end_src&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;I do not want to alter the result output of &lt;code&gt;raw-dataset&lt;/code&gt; since exporting this to e.g. a website puts it as a nice table:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&quot;https://i.stack.imgur.com/xb1iS.png&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;img src=&quot;https://i.stack.imgur.com/xb1iS.png&quot; alt=&quot;exported document&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Question&lt;/em&gt;: How can I keep the table formatted result of &lt;code&gt;raw-dataset&lt;/code&gt; but still be able to clean the data in an easy second step; or how can I read in the results of &lt;code&gt;raw-dataset&lt;/code&gt; as structured table?&lt;/p&gt;&#xA;
  523.        </summary>
  524.    </entry>
  525.    <entry>
  526.        <id>https://stackoverflow.com/q/76906865</id>
  527.        <re:rank scheme="https://stackoverflow.com">0</re:rank>
  528.        <title type="text">Using ox-pluto to export org document to Pluto notebook</title>
  529.            <category scheme="https://stackoverflow.com/tags" term="org-mode" />
  530.            <category scheme="https://stackoverflow.com/tags" term="pluto" />
  531.        <author>
  532.            <name>Chris</name>
  533.            <uri>https://stackoverflow.com/users/3923898</uri>
  534.        </author>
  535.        <link rel="alternate" href="https://stackoverflow.com/questions/76906865/using-ox-pluto-to-export-org-document-to-pluto-notebook" />
  536.        <published>2023-08-15T14:45:20Z</published>
  537.        <updated>2023-08-15T14:45:20Z</updated>
  538.        <summary type="html">
  539.            &lt;p&gt;I am trying to export an org document to a Pluto notebook. I am using the package &#x27;ox-pluto.el&#x27;&lt;/p&gt;&#xA;&lt;p&gt;When I run the command &lt;code&gt;M-x ox-pluto-export-as-pluto&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;I get the error message&lt;/p&gt;&#xA;&lt;p&gt;&lt;code&gt;Symbol&#x27;s function definition is void: uuidgen-4&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;I do not know emacs-lisp well enough to determine what is happening. I appreciate any help in this matter. Thanks&#xA;Chris&lt;/p&gt;&#xA;
  540.        </summary>
  541.    </entry>
  542. </feed>

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid Atom 1.0" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=http%3A//stackoverflow.com/feeds/tag%3Ftagnames%3Dorg-mode%26sort%3Dnewest

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda