[BUG] org-element-at-point rx error on large file [9.6.1 (release_9.6.1-34-geea8da @ /home/dericbytes/installs/share/emacs/30.0.50/lisp/org/)]

2023-03-05 Thread Deric Bytes
Expected: Running `org-element-at-point' on large empty file returns nil. How to replicate: emacs -q (require 'org) (newline 20) (org-element-at-point) Actual response ⛔ Warning (org-element-cache): org-element--cache: Org parser error in *scratch*::24. Resetting. The error was: (error

[Orgmode] Key remapping

2010-01-31 Thread Deric Bytes
I have my keys bound in unconventional places. I was wondering if I would get any problems changing the following in the source code ;; (define-key org-mode-map "\C-k" 'org-kill-line) (define-key org-mode-map [remap kill-line] 'org-kill-line) ___ Emac

[Orgmode] ... but no headline or content in org-mode

2010-01-12 Thread Deric Bytes
I had a look on your FAQS about problems. I could not see anything about "eclipses ... but no healine or content" I can not open the elipses. I can see the content if I change to text-mode. I know this was most probably caused by some random unconcious key pressing. I had noticed lone elipses

[Orgmode] Changing todo status to waiting before clocked out.

2009-04-11 Thread Deric Bytes
How can I change the todo status before an item is clocked out. I was hoping for something like the following (add-hook 'org-before-todo-state-change-hook 'dericbytes/org-clock-out-change-status-to-waiting) (defun dericbytes/org-clock-out-change-status-to-waiting () (

[Orgmode] SOLVED: clock in after org-remember based on TODO

2009-04-09 Thread Deric Bytes
I couldn't find any documentation on how to do it. Here's the code I modified from an answer to a slightly different question. ;; start the clock if there is a STARTED todo tag is in your remember template (add-hook 'org-remember-before-finalize-hook 'my-start-clock-if-needed) (defun my-start-clo

[Orgmode] Error message when running remember - byte-code: Before first headline at position 363 in buffer *Remember*

2009-04-09 Thread Deric Bytes
I was hoping to add a top-level heading to my file. I changed (setq org-remember-templates '(("* Task" ?t "%^{Task status|TODO|STARTED|SUBTASK} %^{Brief Description} %^G\n %^{subject}p %^{other-subjects}p %^{sub-subjects}p %^{keywords}p %?\nCalled from: %a\nAdded: %U" "~/notes/notes-log

[Orgmode] Setting the location of remember based on properties

2009-04-09 Thread Deric Bytes
Is it possible to set the location remember files based on properties of the headline added. :PROPERTIES: :SUBJECT: org :END: ("Todo" ?t "* TODO %^{Brief Description} %^g\n%?\nAdded: %U" "~/notes/%p^{SUBJECT}-todo-090331.org") where %p^{SUBJECT} is org _

[Orgmode] SOLVED: org TODO keywords not showing up

2009-04-09 Thread Deric Bytes
I set a org file to load as my initial page, in my .emacs file (find-file "~/note-keeping-log-090331.org") I also defined my own set of TODO tags. However they were not showing in my initial page. Problem was my file was being loaded before the TODO tags were set The solution was to dela

[Orgmode] SOLVED: org-set-tags-command error - org-fast-tag-selection: Wrong type argument: char-or-string-p, (100)

2009-04-09 Thread Deric Bytes
When I did C-c C-q I got the following error org-fast-tag-selection: Wrong type argument: char-or-string-p, (100) problem was I missed a dot in ("design" ?d))), it should have been ("design" . ?d))) solution (setq org-tag-persistent-alist '(("setup" . ?s) ("problem" . ?p) (

[Orgmode] Moving headlines and content.

2009-04-07 Thread Deric Bytes
Is there a way to MOVE multiple headlines, along with their content, that match a search to a new file. C-c a m +orgmode+howto moved to file ~/notes/org/howto-090704.org C-c a m +orgmode+diary moved to file~/notes/org/diary-090704.org

[Orgmode] hide current heading

2009-03-31 Thread Deric Bytes
I know you can hide the current content when on the heading by pressing TAB. Is there a way to do this when the cursor is within the content of the heading. Can you close all other heading, whilst still keeping current heading open and without moving the cursor _

[Orgmode] font-lock form BEGIN_SRC

2009-03-26 Thread Deric Bytes
Hi I would like the text in BEGIN_SRC to display the colour and tab-indentation of the appropriate emacs-mode whilst viewing the org file. I would also like to be able to hide the markup tag BEGIN_SRC. #+BEGIN_SRC emacs-lisp (defun org-xor (a b) "Exclusive or." (if a (not b

[Orgmode] Howto delimit vertical bar in a table.

2009-03-01 Thread Deric Bytes
How do you delimit a vertical bar in a table. Its not in the manual under table, and I couldn't get an answer googling it. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org