[O] Failed to add wikinodes to ‘org-font-lock-extra-keywords
Hi I want to use org-wikinodes ( http://orgmode.org/worg/org-contrib/org-wikinodes.html) Org wikinode is activated : (setq org-modules (quote (org-wikinodes))) I can follow wikinodes links with C-c C-o. However, the wikinodes links are not clickable. In addition, when I open an org file, I have the following message : "Failed to add wikinodes to ‘org-font-lock-extra-keywords’." I saw in the org-list that this problem was resolved before ( https://lists.gnu.org/archive/html/emacs-orgmode/2015-06/msg00738.html) Emacs version: GNU Emacs 25.2.1 (x86_64-apple-darwin15.6.0, Carbon Version 157 AppKit 1404.47) of 2017-02-15 Org mode version 9.0.5 (9.0.5-elpaplus @ /Users/sam/.emacs.d/elpa/org-plus-contrib-20170210/) Does anybody have the same issue? Any idea of what I could / should do to make org-wikinodes work? Best, Sam
[O] Bug: Filling does not work correctly in lists [9.0.5 (9.0.5-elpa @ /home/oskar/.emacs.d/elpa/org-20170210/)]
I have a buffer with the 3 lines below. Notice that the long lines contains no newlines. I selected (with the mark) the whole last line, the one starting with "2.", and ran `fill-region`. It worked, and the line was filled. Then I tried to do the same with the line starting with "1.", but when I selected it and ran fill-region, nothing happened, and it remained one long line. If I try to fill the line starting with "1." first, before filling "2.", it works. And after "1." I can fill "2.". If I remove the "1." and "2." and just have two long lines instead of a list, they can be filled in any order. The buffer text: * Test 1. long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line 2. long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line long line Emacs : GNU Emacs 25.1.1 (x86_64-pc-linux-gnu, GTK+ Version 3.18.9) of 2016-12-21 Package: Org mode version 9.0.5 (9.0.5-elpa @ /home/oskar/.emacs.d/elpa/org-20170210/) current state: == (setq org-tab-first-hook '(org-babel-hide-result-toggle-maybe org-babel-header-arg-expand) org-speed-command-hook '(org-speed-command-default-hook org-babel-speed-command-hook) org-occur-hook '(org-first-headline-recenter) org-metaup-hook '(org-babel-load-in-session-maybe) org-confirm-shell-link-function 'yes-or-no-p org-startup-indented t org-after-todo-state-change-hook '(org-clock-out-if-current) org-from-is-user-regexp "\\" org-src-mode-hook '(org-src-babel-configure-edit-buffer org-src-mode-configure-edit-buffer) org-agenda-before-write-hook '(org-agenda-add-entry-text) org-babel-pre-tangle-hook '(save-buffer) org-mode-hook '(rainbow-delimiters-mode #[0 "\300\301\302\303\304$\207" [add-hook change-major-mode-hook org-show-block-all append local] 5 "\n\n(fn)"] #[0 "\300\301\302\303\304$\207" [add-hook change-major-mode-hook org-babel-show-result-all append local] 5 "\n\n(fn)"] org-babel-result-hide-spec org-babel-hide-all-hashes) org-archive-hook '(org-attach-archive-delete-maybe) org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-show-empty-lines org-optimize-window-after-visibility-change) org-M-RET-may-split-line nil org-todo-keywords '((sequence "TODO" "IN-PROGRESS" "DONE")) org-confirm-elisp-link-function 'yes-or-no-p org-metadown-hook '(org-babel-pop-to-session-maybe) org-link-parameters '(("id" :follow org-id-open) ("rmail" :follow org-rmail-open :store org-rmail-store-link) ("mhe" :follow org-mhe-open :store org-mhe-store-link) ("irc" :follow org-irc-visit :store org-irc-store-link) ("info" :follow org-info-open :export org-info-export :store org-info-store-link) ("gnus" :follow org-gnus-open :store org-gnus-store-link) ("docview" :follow org-docview-open :export org-docview-export :store org-docview-store-link) ("bibtex" :follow org-bibtex-open :store org-bibtex-store-link) ("bbdb" :follow org-bbdb-open :export org-bbdb-export :complete org-bbdb-complete-link :store org-bbdb-store-link) ("w3m" :store org-w3m-store-link) ("file+sys") ("file+emacs") ("doi" :follow org--open-doi-link) ("elisp" :follow org--open-elisp-link) ("file" :complete org-file-complete-link) ("ftp" :follow (lambda (path) (browse-url (concat "ftp:" path ("help" :follow org--open-help-link) ("http" :follow (lambda (path) (browse-url (concat "http:" path ("https" :follow (lambda (path) (browse-url (concat "https:" path ("mailto" :follow (lambda (path) (browse-url (concat "mailto:"; path ("message" :follow (lambda (path) (browse-url (concat "message:" path ("news" :follow (lambda (path) (browse-url (concat "news:"; path ("shell" :follow org--open-shell-link)) org-clock-out-hook '(org-clock-remove-empty-clock-drawer) )
Re: [O] Table in org-mode not to be exported to latex
On Wednesday, 17 May 2017 at 18:46, Sharon Kimble wrote: > Eric S Fraga writes: > >> On Wednesday, 17 May 2017 at 12:06, Sharon Kimble wrote: >>> How can I have an org-mode table in an org-mode document that is >>> exported to latex, but the table is *NOT* exported, please? >> >> I tend to "hide" things like this (data tables, source codes) that I do >> not want exported within an inline task with :noexport: tag. Useful for >> having the data/code close to where it might be used without having to >> work around the hierarchical structure of org headings. > > Thanks for this Eric. > > Unfortunately, with this as my table block > > #+BEGIN_SRC org :noexport: > | date | change | version | > |+--+-| > | 2016/11/18 | initial draft| 1.0 | > | 2017/05/04 | put in models of grief | 1.5 | > | 2017/05/16 | removed creative commons | 1.6 | > || | | > #+END_SRC No, this is not what I suggested. Others have suggested this and I have no idea if this is meant to work or not. What I suggested is hiding the table within an inline task, as in this example: --8<---cut here---start->8--- * Normal heading *** hidden table:noexport: | date | change | version | |+--+-| | 2016/11/18 | initial draft| 1.0 | | 2017/05/04 | put in models of grief | 1.5 | | 2017/05/16 | removed creative commons | 1.6 | || | | *** END --8<---cut here---end--->8--- You would probably want to name the table so you can access it elsewhere, of course. -- : Eric S Fraga (0xFFFCF67D), Emacs 26.0.50, Org release_9.0.6-432-g6fee6b.dirty signature.asc Description: PGP signature
Re: [O] Table in org-mode not to be exported to latex
Eric S Fraga writes: > On Wednesday, 17 May 2017 at 18:46, Sharon Kimble wrote: >> Eric S Fraga writes: >> >>> On Wednesday, 17 May 2017 at 12:06, Sharon Kimble wrote: How can I have an org-mode table in an org-mode document that is exported to latex, but the table is *NOT* exported, please? >>> >>> I tend to "hide" things like this (data tables, source codes) that I do >>> not want exported within an inline task with :noexport: tag. Useful for >>> having the data/code close to where it might be used without having to >>> work around the hierarchical structure of org headings. >> >> Thanks for this Eric. >> >> Unfortunately, with this as my table block >> >> #+BEGIN_SRC org :noexport: >> | date | change | version | >> |+--+-| >> | 2016/11/18 | initial draft| 1.0 | >> | 2017/05/04 | put in models of grief | 1.5 | >> | 2017/05/16 | removed creative commons | 1.6 | >> || | | >> #+END_SRC > > No, this is not what I suggested. Others have suggested this and I have > no idea if this is meant to work or not. What I suggested is hiding the > table within an inline task, as in this example: > > * Normal heading > *** hidden table:noexport: > | date | change | version | > |+--+-| > | 2016/11/18 | initial draft| 1.0 | > | 2017/05/04 | put in models of grief | 1.5 | > | 2017/05/16 | removed creative commons | 1.6 | > || | | > *** END > > You would probably want to name the table so you can access it > elsewhere, of course. Thanks for this Eric, it works beautifully, and doesn't show in the PDF file. I shall definetly use this in other projects. :) Thanks Sharon. -- A taste of linux = http://www.sharons.org.uk TGmeds = http://www.tgmeds.org.uk DrugFacts = https://www.drugfacts.org.uk Debian 8.8, fluxbox 1.3.5-2, emacs 25.1.1.1, org-mode 9.0.7 signature.asc Description: PGP signature
[O] multiple column views
Hi, is there a specific reason why I can only have one buffer with column view active? Would it be sufficient to make org-columns-begin-marker buffer-local to permit several column views being active at the same time in different buffers? Thanks in advance, Hendrik Tews
[O] "Show Org source" on http://orgmode.org/worg/ does not work
Hi, if I click (for example) on http://orgmode.org/worg/ on the button "Show Org source", nothing happens. The browser con- sole shows that "show_org_source is not defined". If that is non-trivial to fix, removing the button ad inter- im would be an option as well. Tim
[O] Bug: right-alignment fails in column view [9.0.7 (release_9.0.7-439-g2906e5 @ /home/tews/src/org-mode/lisp/)]
Hi, in section 7.5.1.2 Column attributes, the manual says Numbers are right-aligned when a format specifier with an explicit width like ‘%5d’ or ‘%5.1f’ is used. However, I see something similar to 5.0 | * a| 5.0| ** b | when I start column view for * a ** b :PROPERTIES: :XX: 5.0 :END: #+COLUMNS: %6XX{+;%6.1f} %10ITEM Thanks, Hendrik Tews Emacs : GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.22.12) of 2017-04-29 on trouble, modified by Debian Package: Org mode version 9.0.7 (release_9.0.7-439-g2906e5 @ /home/tews/src/org-mode/lisp/) current state: == (setq org-tab-first-hook '(org-babel-hide-result-toggle-maybe org-babel-header-arg-expand) org-speed-command-hook '(org-speed-command-activate org-babel-speed-command-activate) org-occur-hook '(org-first-headline-recenter) org-metaup-hook '(org-babel-load-in-session-maybe) org-confirm-shell-link-function 'yes-or-no-p org-after-todo-state-change-hook '(org-clock-out-if-current) org-src-mode-hook '(org-src-babel-configure-edit-buffer org-src-mode-configure-edit-buffer) org-agenda-before-write-hook '(org-agenda-add-entry-text) org-babel-pre-tangle-hook '(save-buffer) org-mode-hook '((closure (org-inlinetask-min-level buffer-face-mode-face org-mode-map org-tbl-menu org-org-menu org-struct-menu org-entities org-last-state org-id-track-globally org-clock-start-time texmathp-why remember-data-file org-agenda-tags-todo-honor-ignore-options iswitchb-temp-buflist calc-embedded-open-mode calc-embedded-open-formula calc-embedded-close-formula align-mode-rules-list org-emphasis-alist org-emphasis-regexp-components org-export-registered-backends org-modules org-babel-load-languages t) nil (add-hook (quote change-major-mode-hook) (quote org-show-block-all) (quote append) (quote local)) ) (closure (org-bracket-link-regexp org-src-window-setup *this* org-babel-confirm-evaluate-answer-no org-src-preserve-indentation org-src-lang-modes org-edit-src-content-indentation org-babel-library-of-babel t) nil (add-hook (quote change-major-mode-hook) (quote org-babel-show-result-all) (quote append) (quote local)) ) org-babel-result-hide-spec org-babel-hide-all-hashes) org-bibtex-headline-format-function '(closure (org-id-locations org-agenda-search-view-always-boolean org-agenda-overriding-header t) (entry) (cdr (assq :title entry))) org-archive-hook '(org-attach-archive-delete-maybe) org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-show-empty-lines org-optimize-window-after-visibility-change) org-confirm-elisp-link-function 'yes-or-no-p org-metadown-hook '(org-babel-pop-to-session-maybe) org-link-parameters '(("id" :follow org-id-open) ("rmail" :follow org-rmail-open :store org-rmail-store-link) ("mhe" :follow org-mhe-open :store org-mhe-store-link) ("irc" :follow org-irc-visit :store org-irc-store-link) ("info" :follow org-info-open :export org-info-export :store org-info-store-link) ("gnus" :follow org-gnus-open :store org-gnus-store-link) ("docview" :follow org-docview-open :export org-docview-export :store org-docview-store-link) ("bibtex" :follow org-bibtex-open :store org-bibtex-store-link) ("bbdb" :follow org-bbdb-open :export org-bbdb-export :complete org-bbdb-complete-link :store org-bbdb-store-link) ("w3m" :store org-w3m-store-link) ("file+sys") ("file+emacs") ("doi" :follow org--open-doi-link) ("elisp" :follow org--open-elisp-link) ("file" :complete org-file-complete-link) ("ftp" :follow (lambda (path) (browse-url (concat "ftp:" path ("help" :follow org--open-help-link) ("http" :follow (lambda (path) (browse-url (concat "http:" path
Re: [O] Table in org-mode not to be exported to latex
On Thursday, 18 May 2017 at 11:16, Sharon Kimble wrote: [...] > Thanks for this Eric, it works beautifully, and doesn't show in the PDF > file. I shall definetly use this in other projects. :) Glad it worked. Inline tasks are actually quite useful for exports in many different ways. I use them for end-notes (as opposed to footnotes) and for margin notes, depending on what the document is for. You can customise org-latex-format-inlinetask (and imagine equivalently for other export targets?). -- : Eric S Fraga (0xFFFCF67D), Emacs 26.0.50, Org release_9.0.5-479-g987445 signature.asc Description: PGP signature
[O] Bug: org-clocktable-write-default fails to display properties [9.0.7 (9.0.7-elpaplus @ /home/fvaresi/.emacs.d/elpa/org-plus-contrib-20170515/)]
Hi everyone! I'm trying to create a clocktable with the following header: #+BEGIN: clocktable :scope file-with-archives :tstart "2017-05-17 14:00" :tend "" :link t :fileskip0 t :properties ("TODO") This should display every item with the TODO label (which was removed from headline in a recent release). However, the column is empty. Doing some debugging I found out that org-clock-get-table-data does return the required properties. However, the default formatter (org-clocktable-write-default) fails to display it. I think the problem is in line 2596: ;; Get the list of node entries and iterate over it (when (> maxlevel 0) (pcase-dolist (`(,level ,headline ,ts ,time . ,props) entries) Removing the . solves the issue, but I'm not sure what's the purpose of it. Any clues on the best way to fix this? Thanks and keep up the good work! Fernando. Emacs : GNU Emacs 25.1.1 (x86_64-pc-linux-gnu, GTK+ Version 3.22.12) of 2017-04-23, modified by Debian Package: Org mode version 9.0.7 (9.0.7-elpaplus @ /home/fvaresi/.emacs.d/elpa/org-plus-contrib-20170515/)