Re: Babel: Programmatically evaluate a heading and subtrees?

2021-02-28 Thread Nathan Neff
=data1 > (princ (format "called fun1: %s" data)) > #+end_src > > #+name: fun2 > #+begin_src elisp > (princ "called fun2") > #+end_src > I don't see an example of calling these blocks programmatically. I will research the docs a bit more. Thanks! > On

Re: org-refile-target-verify-function - use inherited tag & todo

2021-02-28 Thread Nathan Neff
s (cl-remove-if (lambda (x) (member (car x) agenda-files)) targets))) #+end_src On Sat, Nov 2, 2019 at 8:06 AM Gustavo Barros wrote: > Hi Nate, > > On Fri, Nov 01 2019, Nathan Neff wrote: > > > Indeed, I do use org-refile-use-outline-path 'file. Howe

Babel: Programmatically evaluate a heading and subtrees?

2021-02-20 Thread Nathan Neff
Hello all, I have some code like this: * Heading 1 # code block name:FOO ** Subheading 1 # code block ** Subheading 2 # code block I find that I often want to evaluate the code in Heading 1 and its subheadings. Currently, I navigate to Heading 1 and then use org-babel-execute-subtree I

Clock report: Handy way to "Advance" report by 1 week

2020-09-28 Thread Nathan Neff
Hello all, I was writing this e-mail to ask this question and I got one of those "Org Mode Rules!" moments and thought I'd share: I have this clockreport which works great * Week of [2020-09-28 Mon] #+BEGIN: clocktable :scope agenda :maxlevel 2 :tstart "[2020-09-28 Mon]" :tend "[2020-10-04

Re: Custom block agendas: Set buffer name

2020-09-20 Thread Nathan Neff
*right now* but in about 3 months the code will once again be a paren-fest. Thanks, --Nate On Wed, Feb 12, 2020 at 5:49 PM Nathan Neff wrote: > Hello all, > > I'm playing with block agendas and I'm wondering how to set a > specific buffer > name. > > In non-block agendas,

Re: Using regular expressions in custom agenda views

2020-06-28 Thread Nathan Neff
On Sun, Jun 28, 2020 at 5:48 PM Nathan Neff wrote: > More wonkiness: > > This custom view (no regexes) doesn't work, but manually entering projectA > (no quotes) in a tags-todo search > *does* work - so maybe my problem isn't regexes, but something else with > my org-agen

Re: Using regular expressions in custom agenda views

2020-06-28 Thread Nathan Neff
"projectA"))) On Sun, Jun 28, 2020 at 5:39 PM Nathan Neff wrote: > Still isn't working with org-mode 9.3.7 (org-20200622) and > using emacs -q > > I have this file: > > * One > :project:a:work:boss:projectA: > :PROPERTIES: > :Effort: 1:00 > :END: >

Re: Using regular expressions in custom agenda views

2020-06-28 Thread Nathan Neff
-agenda-custom-commands '(("1" tags-todo "{projectA}"))) If I do a tags-todo search manually and use this syntax: {projectA} it works. Ideas? On Sun, Jun 28, 2020 at 5:28 PM Nathan Neff wrote: > G I tried "package update" and package mgr in Emacs kept telling m

Re: Using regular expressions in custom agenda views

2020-06-28 Thread Nathan Neff
ckages. On Sun, Jun 28, 2020 at 5:27 PM Nathan Neff wrote: > > > On Sun, Jun 28, 2020 at 4:12 PM Kyle Meyer wrote: > >> Nathan Neff writes: >> >> > I'm having a difficult time using regular expressions in custom >> > "tags-todo" agenda vie

Re: Using regular expressions in custom agenda views

2020-06-28 Thread Nathan Neff
On Sun, Jun 28, 2020 at 4:12 PM Kyle Meyer wrote: > Nathan Neff writes: > > > I'm having a difficult time using regular expressions in custom > > "tags-todo" agenda views. > > > > Is it possible to create custom agenda views using regular expressions, &g

Using regular expressions in custom agenda views

2020-06-28 Thread Nathan Neff
I'm having a difficult time using regular expressions in custom "tags-todo" agenda views. Is it possible to create custom agenda views using regular expressions, and if so, do I need to escape certain characters? I can't get a simple regex like this to work, so I'm suspecting that I'm doing

Agenda: Default view missing 40th character

2020-03-24 Thread Nathan Neff
Hello all, I have had the 40th character missing from my agenda view, like this: Weeklytodo Expenses - Intern t and Friends :hab: habittodo [#A] Inbox, Check Calendars :hab: habittodo [#A] Unmount / Ba kup Notes Note how the 40th character is rendered as a

Org Babel: Submit SQL to command line app & capture results

2020-02-23 Thread Nathan Neff
Hello all, I would like to use org-babel to have SQL code like this: * Some heading #+begin_src something SELECT COUNT(*) FROM some_table; #+end_src I would like to have the code highlighted as SQL. However, I'm not reading from a DB matching the requirements of

Custom block agendas: Set buffer name

2020-02-12 Thread Nathan Neff
Hello all, I'm playing with block agendas and I'm wondering how to set a specific buffer name. In non-block agendas, I can set the buffer name like this: (setq org-agenda-custom-commands (append '( ("p" "Simple list of active projects" tags-todo

Re: Agenda: How to bulk mark regex w/spaces?

2020-02-12 Thread Nathan Neff
Thanks Bastien for your hard work - I'm famous! https://code.orgmode.org/bzg/org-mode/commit/c0d08b7efe740c17a3eec28984161c05e43da5ef On Wed, Feb 12, 2020 at 1:01 PM Bastien wrote: > Hi Nathan, > > thanks for sticking with me on this one! You're right, it's when the > match happens at the end

Re: Agenda: How to bulk mark regex w/spaces?

2020-02-12 Thread Nathan Neff
/lisp/org-agenda.el#L10160 On Wed, Feb 12, 2020 at 11:49 AM Nathan Neff wrote: > Hi Bastien, > > I'm using emacs -u NONE with emacs 27.0.50 > and Org mode version 9.2.5 > > And I'm not seeing this expected behavior. > > I have the following simple foo.org file for my agend

Re: Agenda: How to bulk mark regex w/spaces?

2020-02-12 Thread Nathan Neff
lls :))) Thanks, --Nate Thanks, --Nate On Tue, Feb 11, 2020 at 5:22 PM Bastien wrote: > Hi Nathan, > > Nathan Neff writes: > > > I'm trying to use org-agenda-bulk-mark-regexp and trying to search > > for > > headings having "Pre Class". > > &g

Agenda: How to bulk mark regex w/spaces?

2020-02-11 Thread Nathan Neff
Hello all, I'm trying to use org-agenda-bulk-mark-regexp and trying to search for headings having "Pre Class". None of the combinations have worked so far (I've tried with quotes and without quotes in the prompt) Pre Class Pre\sClass Pre\\sClass Pre.*Class {Pre Class} It appears that the

Agenda: Display timeline for today

2019-12-30 Thread Nathan Neff
Hello all, I was searching for a way to display today's clocked items in a timeline style view e.g.: 10:00 - 10:15 foo 11:00 - 11:15 bar I found this Stack Overflow thread: https://emacs.stackexchange.com/questions/19746/get-a-timeline-of-clocked-time-in-org-mode One of the replies says to

Babel: Store script in external file

2019-12-15 Thread Nathan Neff
Hello all, I think I'm missing something basic: I'd like to have something like this: #+begin_src python #+filename: foo.py Instead of storing my Python code in the current org file, I would like Babel to read foo.py and execute it, as if it was inside the .org file. The foo.py mentioned

Babel: Set org-babel-min-lines-for-block-output for single code block?

2019-12-15 Thread Nathan Neff
Hello all, I just found the org-babel-min-lines-for-block-output variable. I have a table like this: #+RESULTS: people-table | User | ID | Homepage | |---++--| | Bob | 1 | http://example.com/bob | | Steve | 2 | http://example.com/steve |

Agenda: Display scheduled items only once

2019-11-16 Thread Nathan Neff
Hello all, How can I tell org-mode to only show me a scheduled todo item once in my agenda? IMHO the format below becomes pretty formidable if I have a bunch of scheduled items from the past, because the items will show up on the original day (e.g. Thursday in the example below) *and* on today's

Using variables in org-capture-templates

2019-11-12 Thread Nathan Neff
Hello all, I'm sure this is a basic elisp thing but I'd like some help: I wanted to abstract the "sprintf-like" formats of the template expansion into readable variables that I can reuse in my templates. However, upon substituting variable for the formats, I am getting "Invalid capture

Publish to PDF on Linux: An impossible task?

2019-11-10 Thread Nathan Neff
After using org-mode for 10 years, I run for the doorway when I even think about trying to convert an org-mode file to PDF. *** I quiver when I see errors such as: warning: kpathsea: configuration file texmf.cnf not found in these directories:

Wow - clockcheck

2019-11-08 Thread Nathan Neff
Another zesty discovery that I made today after using org for like 10 years is "clockcheck" mode in Agenda (v c). I have never known about that (or forgot about it). I haven't run the git-blame on that feature though, I don't want to have a big gap in my clock times between tasks :) Thanks,

Wow - org-notify

2019-11-08 Thread Nathan Neff
I have not put effort estimates on my tasks for a long time. Tonight, I was playing chess and saw a "notify" message come up on my Linux box that should be finished by now. Wow - I never knew org-mode had that built-in! I ran a git-blame on the org-source code [1] and it's been a long time,

Capture to heading of current cursor

2019-11-05 Thread Nathan Neff
Hello all, I know I've asked this before, but can't remember the quick & easy path (TM) to creating an org-capture template which will capture to the current heading? It would be cool to simply "re-use" my existing capture templates and override the destination to "wherever my cursor is now" --

Org meta up/down and left/right behavior

2019-11-05 Thread Nathan Neff
Hello all, I noticed for the first time the difference in the shift key behavior in the following function groups: org-meta up/down versus org-shiftmeta up/down and org-meta left/right versus org-shift meta left/right With the up/down behavior the shift key being pressed indicates that I wish

tags-todo agenda: Show scheduling info

2019-11-02 Thread Nathan Neff
Hello all, I'm having trouble with simply trying to show any scheduling information about a heading in a tags-todo search. Can someone point me to how to do this? I thought that I define a custom agenda command like this: (setq org-agenda-custom-commands '( ("p" "Foo" tags-todo "+foo"

Re: org-refile-target-verify-function - use inherited tag & todo

2019-11-01 Thread Nathan Neff
Thanks Gustavo, notes below: On Sun, Oct 27, 2019 at 5:58 PM Gustavo Barros wrote: > Hi Nate, > > On Sun, Oct 27 2019, Nathan Neff wrote: > > > 1) My org-agenda-files show up in the list. For example, foo.org and > bar.org show up in the refile targets, despite the >

Anyone use 3rd party search tools w/org-mode?

2019-10-30 Thread Nathan Neff
Hello all, I'm considering "indexing" my org-mode files and haven't done any research into this. I'm sure there's 100 different ways to do this but wanted to ask the list if anyone is indexing their org-mode files and using a search tool like Solr, Elastic or smaller indexing engines to search

org-refile-target-verify-function - use inherited tag & todo

2019-10-27 Thread Nathan Neff
Hi all, I want to filter my refile targets to "Tasks" headings. This snippet works: https://lists.gnu.org/r/emacs-orgmode/2016-02/msg00088.html There's a few things I'd like to improve on: 1) My org-agenda-files show up in the list. For example, foo.org and bar.org show up in the refile

[O] Scroll Agenda Dispatcher window

2019-10-22 Thread Nathan Neff
Hello all, Sometimes (recently) I have quite a few custom agenda commands and if the window is not large enough, I can't view all of the available agenda custom commands - what is the keyboard shortcut to scroll / display the lower section of the custom agenda commands? Thanks, --Nate

Re: [O] Help with "macro"

2019-10-12 Thread Nathan Neff
I'm getting there - I found (org-element-property :PROJ (org-element-at-point)) from a regular org-mode file - now I just need to jump there from the agenda. On Sat, Oct 12, 2019 at 12:18 PM Nathan Neff wrote: > I'm trying to implement a function to display the TODO items of the > cur

[O] Help with "macro"

2019-10-12 Thread Nathan Neff
I'm trying to implement a function to display the TODO items of the currently highlighted item in the agenda and have a few questions: Goal: 1) From the agenda, place the cursor on a heading. 2) Press a key and instantly narrow the agenda to the heading which the cursor is on. 3) Display

[O] Dates with repeaters, times and range

2019-10-01 Thread Nathan Neff
Hello all, I have a question that's probably FAQ material but I was wondering what the "best" way to do something like this would be: I have a meeting that's scheduled from 10:00 - 11:00 for the next three days. I tried to create a heading with this property: <2019-10-02 Wed 08:30-15:00

Re: [O] PPTX link: Open with PowerPoint on Mac

2019-09-27 Thread Nathan Neff
other says 4.4. What do I need to do to report this doc / publishing bug? Thanks, --Nate On Fri, Sep 27, 2019 at 5:50 AM Nathan Neff wrote: > > > On Fri, Sep 27, 2019 at 4:45 AM Takaaki Ishikawa wrote: > >> I think you may have to put “file+sys:/“ before your path. >>

Re: [O] PPTX link: Open with PowerPoint on Mac

2019-09-27 Thread Nathan Neff
On Fri, Sep 27, 2019 at 4:45 AM Takaaki Ishikawa wrote: > I think you may have to put “file+sys:/“ before your path. > > For example: file+sys://Users/nate/some_pptx.pptx > Thank you Takaaki very much! This worked great! > > Best, > Takaaki > > > On Sep 27, 2019

[O] PPTX link: Open with PowerPoint on Mac

2019-09-27 Thread Nathan Neff
Hello all, I have a simple path in org-mode /Users/nate/some_pptx.pptx When I press C-c C-o it opens the file in binary mode in Emacs. A path to a PDF will actually open the file with the associated program: /Users/nate/some_png.png -> Opens in Preview when I press C-c C-o How can I get emacs

Re: [O] Basic Q: Display specific property in custom agenda view

2019-09-27 Thread Nathan Neff
Thanks Eric, this does it! On Thu, Sep 26, 2019 at 12:27 AM Fraga, Eric wrote: > On Thursday, 26 Sep 2019 at 00:06, Nathan Neff wrote: > > Got it! Now, all I need to do is add the cool ":" functionality > > where a ":" is appended to the result if there is a

Re: [O] Basic Q: Display specific property in custom agenda view

2019-09-25 Thread Nathan Neff
clude-inactive-timestamps nil))) On Wed, Sep 25, 2019 at 11:16 PM Nathan Neff wrote: > > On Wed, Sep 25, 2019 at 7:12 PM Nathan Neff wrote: > >> Hello all, >> >> My apologies for not finding this in the docs, but I'm trying to define a >> simple custom agenda

Re: [O] Basic Q: Display specific property in custom agenda view

2019-09-25 Thread Nathan Neff
On Wed, Sep 25, 2019 at 7:12 PM Nathan Neff wrote: > Hello all, > > My apologies for not finding this in the docs, but I'm trying to define a > simple custom agenda view that is exactly the same as the default day week > view, > except the only difference is displaying a p

[O] Basic Q: Display specific property in custom agenda view

2019-09-25 Thread Nathan Neff
Hello all, My apologies for not finding this in the docs, but I'm trying to define a simple custom agenda view that is exactly the same as the default day week view, except the only difference is displaying a property called FOO instead of the CATEGORY property. I think it's simply a matter of

[O] Org-capture %a expansion - create ID link

2019-09-25 Thread Nathan Neff
Hello all, I'm using capture templates with the %a expansion element [1] The documentation says: "Annotation, normally the link created with org-store-link." The expansion results in links like this: file:~/org-mode/inbox.org::*Heading This not really so good, because I routinely refile

Re: [O] Org babel tangle: Don't export code

2019-09-25 Thread Nathan Neff
On Wed, Sep 25, 2019 at 12:54 AM Ken Mankoff wrote: > > On 2019-09-25 at 01:07 +02, Tim Cross wrote... > > I just put :tangle no in the block header e.g. > > > > #+begin_src emacs-lisp :tangle no > > > > #+end_src > > Also, > > * COMMENT Section > #+BEGIN_SRC > # not exported because of COMMENT

Re: [O] Org babel tangle: Don't export code

2019-09-24 Thread Nathan Neff
DF, it will be exported > as a PDF file where the source blocks will appear as source listings in > the PDF file along with all the other non source block text. If on the > other hand, you tangle your emacs init org file, it will create an .el > file with only the source blocks. &g

Re: [O] Org babel tangle: Don't export code

2019-09-24 Thread Nathan Neff
ocks from my .emacs.d/init.el file, > which is tangled from an or file. You can also put a filename. This is > what I do for Emacs 27, which introduces the early-init.el file i.e. > > #+begin_src emacs-lisp :tangle early-init.el > > #+end_src > > #+begin_src emacs-lisp :tangle

[O] Org babel tangle: Don't export code

2019-09-24 Thread Nathan Neff
Hello all, I use *.org files to configure my emacs and use org-babel-load-file to configure my org-mode using *.org files. Love the feature. However sometimes I'm experimenting with code blocks, and want to simply "turn off" certain code blocks in my *.org files from being executed. Every time

Re: [O] Tables: Exclude headings in Row Number?

2019-09-22 Thread Nathan Neff
dings") Thanks, --Nate On Sun, Sep 22, 2019 at 10:22 PM Nathan Neff wrote: > Hi Neil, > > Unfortunately, no - This code will print the number of rows in my table - > it does > not add a column to my table, with numbering starting at the first row > under the > headline

Re: [O] Tables: Exclude headings in Row Number?

2019-09-22 Thread Nathan Neff
D_SRC > > #+RESULTS: > : 5 > > Best wishes, > Neil > > > On Wed, 18 Sep 2019 at 18:39, Nathan Neff wrote: > >> Hello all, >> >> I have a table like this: >> >> >> | ID | >> || >> | 2 | >> | 3 | >> &g

[O] Tables: Exclude headings in Row Number?

2019-09-18 Thread Nathan Neff
Hello all, I have a table like this: | ID | || | 2 | | 3 | and I want to know how many rows there are w/o the ID heading and w/o the horizontal separator. I found the org-table-toggle-coordinate-overlays which displays an overlay showing the row number:

Re: [O] Move Currently clocked in task to left on modeline

2019-09-03 Thread Nathan Neff
Thanks Nick, Anyone else, I would like to hear how you can keep the currently clocked task in plain site - I use MacOS and Linux, so if there's any OS-specific status software that you recommend let me know. Thanks, --Nate On Mon, Jul 22, 2019 at 6:39 PM Nick Dokos wrote: > Nathan N

[O] Checkbox dependencies - Discern between DONE and CANCELED

2019-08-29 Thread Nathan Neff
Hello all, I have org-enforce-todo-checkbox-dependencies set to t, and I would like to simply mark some tasks as canceled without needing to mess with the checkboxes. I can press C-u C-u C-u C-c C-t which will override dependencies. However, I was wondering if there's a way for org-mode to

Re: [O] Agenda: Display projects and 3 todo subtasks

2019-08-23 Thread Nathan Neff
ect subtask snippet isn't working any more. I > don't think I can sort that out while I'm away from my computer, so it may > take me a few weeks until I can poke around. If anyone happens to have a > better config, please feel free to share! > > On Wed., Jul. 31, 2019, 10:37 Nathan Ne

Re: [O] Insert subheading at top respect content

2019-08-22 Thread Nathan Neff
outline-next-heading) (org-insert-heading) (while (<= (car (org-heading-components)) level) (org-demote)) )) I added (org-show-children) to work when cursor is on a folded heading. I removed the 1 argument to org-next-visible-heading This appears to do what I want - thanks f

Re: [O] Insert subheading at top respect content

2019-08-20 Thread Nathan Neff
On Tue, Aug 20, 2019 at 5:42 PM Nathan Neff wrote: > > > On Fri, Aug 16, 2019 at 4:03 AM Carsten Dominik wrote: > >> >> >> On Fri, Aug 16, 2019 at 10:21 AM Nathan Neff >> wrote: >> >>> Hello all, >>> >>> Something tha

Re: [O] Insert subheading at top respect content

2019-08-20 Thread Nathan Neff
On Fri, Aug 16, 2019 at 4:03 AM Carsten Dominik wrote: > > > On Fri, Aug 16, 2019 at 10:21 AM Nathan Neff > wrote: > >> Hello all, >> >> Something that's eluded me all this time has been an >> "Insert subheading, after the content, but before ot

[O] Custom function: Detect agenda mode

2019-08-20 Thread Nathan Neff
Hello all, I would like to map the same key to different functions in evil mode. For example, ",s" should be a shortcut to the schedule command. I'd like to have one function that I would map the command to, which would call either org-schedule or org-agenda-schedule, depending on whether the

[O] Unschedule an item from the date prompt

2019-08-20 Thread Nathan Neff
Hello all, I seem to remember a way to unschedule an item from the date prompt. I found: https://orgmode.org/manual/The-date_002ftime-prompt.html But there's nothing mentioned there. Is there a way to unschedule something other than C-u C-c C-s? Just curious --Nate

[O] Insert subheading at top respect content

2019-08-16 Thread Nathan Neff
Hello all, Something that's eluded me all this time has been an "Insert subheading, after the content, but before other subheadings" For example: If my cursor is anywhere between lines 1 and 4, I would like the subheading to be inserted at line 5. 1* Heading :PROPERTIES:... 2 Some content 3

Re: [O] Open buffers, etc in other window

2019-08-14 Thread Nathan Neff
I just found the term I'm looking for: "advice" -- here's an unrelated example: https://emacs.stackexchange.com/questions/17169/change-order-of-buffers-in-helm-buffers-list On Wed, Aug 14, 2019 at 3:36 PM Nathan Neff wrote: > Hello all, > > There are quite a few command

[O] Open buffers, etc in other window

2019-08-14 Thread Nathan Neff
Hello all, There are quite a few commands I run in org-mode to jump to headlines: org-clock-goto org-capture-goto-last-stored, etc. Sometimes, I would prefer that those "jump" commands would use a new window to perform the jump. In my quest to learn Lisp a bit better, I'd like to ask for

Re: [O] Helm + Org-mode 9.2.5: Problem with org-set-tags

2019-08-10 Thread Nathan Neff
/emacs-helm/helm/issues/2183 Thanks all for your help, hope this helps someone else too :) --Nate On Sat, Aug 10, 2019 at 4:01 PM Nathan Neff wrote: > > > On Sat, Aug 10, 2019 at 3:44 PM Nathan Neff wrote: > >> Hello all, >> >> I created a VM, installed Emacs 26.

Re: [O] Helm + Org-mode 9.2.5: Problem with org-set-tags

2019-08-10 Thread Nathan Neff
On Sat, Aug 10, 2019 at 3:44 PM Nathan Neff wrote: > Hello all, > > I created a VM, installed Emacs 26.2 fresh, and installed various versions > of org-mode using the tar.gz files from https://orgmode.org/ > > I replaced org-mode in /usr/share/emacs/26.2/lisp/org with variou

Re: [O] Helm + Org-mode 9.2.5: Problem with org-set-tags

2019-08-10 Thread Nathan Neff
easily be something that I have set incorrectly. Thanks, --Nate On Fri, Aug 9, 2019 at 4:28 PM Nathan Neff wrote: > Hello all, > > I'm hitting this problem with Org-mode 9.2.5: > https://groups.google.com/forum/#!topic/emacs-helm/tA6cn6TUdRY > > Problem synopsis: When

Re: [O] Helm + Org-mode 9.2.5: Problem with org-set-tags

2019-08-10 Thread Nathan Neff
On Fri, Aug 9, 2019 at 5:15 PM Adam Porter wrote: > Try using the bug-hunter package to isolate the part of your init file > that may be causing the problem. > > Does bug-hunter use d.el and s.el and the other 24 alphabet libraries? :-) I would use bug-hunter, but I'm not convinced the problem

[O] Helm + Org-mode 9.2.5: Problem with org-set-tags

2019-08-09 Thread Nathan Neff
Hello all, I'm hitting this problem with Org-mode 9.2.5: https://groups.google.com/forum/#!topic/emacs-helm/tA6cn6TUdRY Problem synopsis: When I use org-set-tags on a heading with no tags, Helm gives me the correct prompt w/a list of all my tags. After I have entered a single tag, then no more

Re: [O] Configure Helm Source from org-tags-view

2019-08-09 Thread Nathan Neff
On Fri, Aug 9, 2019 at 2:14 PM Adam Porter wrote: > Nathan Neff writes: > > > I know, but rifle has so many dependencies > > > > Rifle is truly awesome, I just have to convince myself to trust > > f.el and d.el or whatever those one-letter libraries are :-) >

Re: [O] Configure Helm Source from org-tags-view

2019-08-09 Thread Nathan Neff
I know, but rifle has so many dependencies Rifle is truly awesome, I just have to convince myself to trust f.el and d.el or whatever those one-letter libraries are :-) Thanks, --Nate On Fri, Aug 9, 2019 at 6:10 AM Adam Porter wrote: > Nathan Neff writes: > > > Hello all,

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Nathan Neff
h the type of data that's returned by the function, but I'll look into it later. Thanks, --Nate Thanks for your help, --Nate On Thu, Aug 8, 2019 at 3:30 PM Jean Louis wrote: > * Nathan Neff [2019-08-08 22:24]: > > I removed the staff from the beginning of the function call, an

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Nathan Neff
quot;bar" I also removed the (or (and)) conditions :-) Now, I need to see how to make this function search all agenda files - it seems to work only on the headlines in Foo.org Thanks, --Nate On Thu, Aug 8, 2019 at 3:03 PM Nathan Neff wrote: > Hi Jean, > > Thank you - however, I can

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Nathan Neff
em. My org-agenda-files contains files and I have a headline with the tag "staff" - no quotes, and the function's not returning anything. Thanks, --Nate On Thu, Aug 8, 2019 at 2:13 PM Jean Louis wrote: > * Nathan Neff [2019-08-08 18:50]: > > Hello all, > > > > Has anyo

Re: [O] Agenda: Display projects and 3 todo subtasks

2019-08-08 Thread Nathan Neff
Wow - thanks Adam! Your stuff is awesome. org-rifle is incredible. (I just wish that it didn't have as many dependencies -- I guess I'm just a bit paranoid). Thanks, --Nate On Thu, Aug 8, 2019 at 10:48 AM Adam Porter wrote: > Hi Nathan, > > Well, this is an unorthodox solution using

[O] Configure Helm Source from org-tags-view

2019-08-08 Thread Nathan Neff
Hello all, Has anyone created a Helm source from the results of org-agenda? Specifically org-tags-view I think would be a cool Helm source to configure where the headings that have certain tags could be displayed by Helm. I looked @ the code for org-tags-view and it's fairly straight forward -

Re: [O] CUSTOM_ID vs ID

2019-08-02 Thread Nathan Neff
On Sun, Jul 28, 2019 at 3:10 AM Nicolas Goaziou wrote: > Hello, > > Nathan Neff writes: > > > I've often been confused why org-mode has both a CUSTOM_ID > > and a ID property. I mean, why not just use one or the other name? > > Custom ID are user-defined, an

Re: [O] Agenda: Display projects and 3 todo subtasks

2019-08-01 Thread Nathan Neff
asks that can be accomplished NEXT. This may obviate the need to show the first X items of any given project. So many options . . . . . . Thanks, --Nate > > > >> On Wed., Jul. 31, 2019, 10:37 Nathan Neff, wrote: >> >>> I forgot to mention that I have PROJECT tag as not

Re: [O] Agenda: Display projects and 3 todo subtasks

2019-07-30 Thread Nathan Neff
uot; ((org-agenda-max-entries 3)) On Tue, Jul 30, 2019 at 9:32 PM Nathan Neff wrote: > Hello all, > > I found this cool snippet at Sacha Chua's website: [1]. > > It creates an agenda view with headings marked with tag "project", > and for each of those

[O] Agenda: Display projects and 3 todo subtasks

2019-07-30 Thread Nathan Neff
Hello all, I found this cool snippet at Sacha Chua's website: [1]. It creates an agenda view with headings marked with tag "project", and for each of those headings, it displays up to 3 sub headings marked TODO. I like this idea of seeing my projects (plus a few TODO entries under each project)

Re: [O] CUSTOM_ID vs ID

2019-07-29 Thread Nathan Neff
On Sun, Jul 28, 2019 at 3:10 AM Nicolas Goaziou wrote: > Hello, > > Nathan Neff writes: > > > I've often been confused why org-mode has both a CUSTOM_ID > > and a ID property. I mean, why not just use one or the other name? > > Custom ID are user-defined, an

[O] Links in Org-mode : Clunky

2019-07-27 Thread Nathan Neff
Hello all, I've always found that the links in org-mode are basically very clunky to try to use in a quick fashion. To my understanding (see my other question about CUSTOM_ID versus ID) it's a good practice to store either a CUSTOM_ID or ID - (still can't grok the difference) and then store a

[O] CUSTOM_ID vs ID

2019-07-27 Thread Nathan Neff
Hello all, I've often been confused why org-mode has both a CUSTOM_ID and a ID property. I mean, why not just use one or the other name? When would I ever have both an ID and a CUSTOM_ID property for a heading? Thanks, --Nate

Re: [O] Helm + org-set-tags

2019-07-26 Thread Nathan Neff
k with org-set-tags-command correctly! init.el (setq package-load-list '((helm-core t) (helm t) (async t) (popup t))) (package-initialize) (require 'helm-config) (helm-mode 1) On Fri, Jul 26, 2019 at 4:47 PM Nathan Neff wrote: > Hello all, > > I would like to use helm to select t

Re: [O] Show breadcrumbs of nodes in agenda

2019-07-26 Thread Nathan Neff
Also, on my system, the breadcrumb of the headline under the cursor is shown at the bottom of my Emacs: https://www.evernote.com/shard/s226/sh/d9e40d44-0c12-4015-a536-f78ff1840de6/67695bdf33fa3aa8ef91fdf199207f3d I don't know if I had to do anything special to get this. Thanks, --Nate On Fri,

[O] Helm + org-set-tags

2019-07-26 Thread Nathan Neff
Hello all, I would like to use helm to select tags for my headings, and I'm having a tough time getting something to work. I would like the following behavior: 1) org-set-tags-command would show a list of all tags in my agenda files using the helm interface 2) I could set one tag for each call

[O] Move Currently clocked in task to left on modeline

2019-07-22 Thread Nathan Neff
Hello all, How can I move the currently clocked task to be on the left side of my modeline in emacs? Thanks, --Nate

Re: [O] Agenda: Disable grayed headings having/checkboxes

2019-07-20 Thread Nathan Neff
hose checkboxes are blocking the parent heading. > > On Tue, Jul 09, 2019 at 9:31PM Nathan Neff wrote: > > Hello all, > > > > I found that my agenda view will show a scheduled heading as gray if it > > contains > > checkboxes in the body. > > > > Can I disable this? > > > > Thanks, > > --Nate >

[O] Agenda: Disable grayed headings having/checkboxes

2019-07-09 Thread Nathan Neff
Hello all, I found that my agenda view will show a scheduled heading as gray if it contains checkboxes in the body. Can I disable this? Thanks, --Nate

[O] Suggestion for note capture

2019-05-10 Thread Nathan Neff
Hello all, Long time org user and I would like to hear how other people accomplish the capturing of log entries in the context of a currently clocked task. Context: I am clocked into * Task A. I have something about Task A that I want to log. Let's say "Ran into some problem and wasted 30

[O] Viewing all logbook entries between time/date

2019-05-01 Thread Nathan Neff
Hello all, I found this request on reddit [1] and wanted to see if there's any update to org-mode that would fit the request. In short, the request is for an "agenda" view or some other kind of consolidated view of all log messages that have inactive timestamps between and . Currently, the

Re: [O] Agenda search: setting sort-order

2018-08-01 Thread Nathan Neff
On Tue, Jun 19, 2018 at 3:20 PM, Nicolas Goaziou wrote: > Hello, > > Nathan Neff writes: > > > I had a look at org-agenda.el, and took a first stab at "coding" :) > > I fixed the sorting problem when using agenda-search-view, and > > I have a DI

Re: [O] Agenda search: setting sort-order

2018-06-18 Thread Nathan Neff
xp org-complex-heading-regexp 'priority 1000 - 'type "search") + 'type (concat "search" ts-date-type)) (push txt ee) (goto-char (1- end)) (setq rtn (nreverse e

Re: [O] Agenda search: setting sort-order

2018-06-12 Thread Nathan Neff
to reproduce the problem using a fairly clean Emacs install (a VM with no customizations). Thanks, --Nate On Wed, May 30, 2018 at 4:57 PM, Nathan Neff wrote: > Hi all, > > I'm using org-mode version 9.1.13 from elpa, and > have a custom agenda command: > > > (setq org-a

[O] Agenda search: setting sort-order

2018-05-30 Thread Nathan Neff
Hi all, I'm using org-mode version 9.1.13 from elpa, and have a custom agenda command: (setq org-agenda-custom-commands '( ("z" search "" ((org-agenda-sorting-strategy '(timestamp-up)) And I have an org-file with this data: * TODO [#C] Test1 :foo: <2018-04-24 Tue 19:30> *

[O] Contexts?

2012-12-13 Thread Nathan Neff
Hi, I'd like to know if there's a way to tell Emacs or org-mode to be in a certain context, where a certain directory is home depending on what context I'm working in currently. For example, if I'm giving a presentation, I would like org-mode/Emacs/ido-mode to have ~/presentation as a

[O] Had to require org-capture?

2012-11-21 Thread Nathan Neff
Hello, I'm running org-mode from the non-compiled source code and the latest git pull. I noticed that calling org-capture was not working correctly, so I ran (require 'org-capture), then it worked. Is this something new? I can post version, setup, etc. later, but I just wanted to know if I'm

Re: [O] OSX to PDF: Minimal Install

2012-11-05 Thread Nathan Neff
On Fri, Nov 2, 2012 at 2:41 PM, Jambunathan K kjambunat...@gmail.com wrote: Nathan Neff nathan.n...@gmail.com writes: Hello, I'd like to convert org-mode documents to PDF using the exporter, on OSX, but it appears that I'd have to download MacTex which is a 2GB download. Is there anything

[O] OSX to PDF: Minimal Install

2012-11-02 Thread Nathan Neff
Hello, I'd like to convert org-mode documents to PDF using the exporter, on OSX, but it appears that I'd have to download MacTex which is a 2GB download. Is there anything smaller that I could download in order to be able to export org documents to PDF? Thanks, --Nate

[O] Keyboard command to force done

2012-10-11 Thread Nathan Neff
Hello, I'd like to create a keyboard shortcut to set a TODO state to done and ignore any dependencies/blocking (like todo items in subheadings, or checkboxes). From the documentation for (org-todo) I see that I need to specify the argument prefix of C-u C-u C-u I have other keyboard shortcuts

[O] Use default value if a variable is not defined

2012-10-11 Thread Nathan Neff
Hello, I'm trying to create a function that will tell org-capture dynamically where to put the captured item. I have it almost working -- where I'm getting hung up on is with basic Emacs lisp. I want to basically implement this pseudo code: IF I have defined a variable called

[O] Show more text in Follow mode or Tabbing after search?

2012-10-08 Thread Nathan Neff
Currently, I do an Agenda search, then I get a list of result headlines back. I know there's a Show Context feature but this is rather noisy. I like the Follow mode feature, but is there a way to show more context around the text that's shown in the Follow mode? For example, I have window 1 and

  1   2   3   >