aboutsummaryrefslogtreecommitdiffstats
path: root/oni-org
Commit message (Collapse)AuthorAgeFilesLines
...
* [oni-org] Reduce the distance of the tags columnGravatar Tom Willemse2022-09-271-2/+2
| | | | This will make top-level headlines still place their tags before the line ends.
* [oni-org] Update available agenda commandsGravatar Tom Willemse2022-09-211-8/+16
|
* [oni-org] Add ‘form-feed’ package to dependenciesGravatar Tom Willemse2022-08-241-2/+2
| | | | This way I can use pretty looking horizontal rulers in my org files.
* [oni-org] Update default todo agenda commandGravatar Tom Willemse2022-06-211-2/+2
| | | | | | I've removed the hierarchy from my tags, so now I need to see any for the tag of the current host name, any computer, and any emacs tasks that have a state of TODO.
* [oni-org] Use IDs for org-mode links if a heading has oneGravatar Tom Willemse2022-06-201-1/+3
| | | | | | I don't want to set it up to always use an ID just yet because I'm not sure how well that will work with programs like Orgzly and Orgro which don't support using ID.
* [oni-org] Remove ‘mixed-pitch’Gravatar Tom Willemse2022-06-201-3/+2
| | | | | | | I tried it, and I just didn't like it. It looks alright, but alignment is difficult, and even though faces are set up to be fixed-pitch they still end up rendering as variable-pitch. During startup my org file also loads too early and doesn't get the right font set. It just doesn't really add enough.
* [oni-org] Add “Waiting for” to my overview and add ↵Gravatar Tom Willemse2022-06-131-2/+4
| | | | “Review” agenda
* [oni-org] Update all dynamic blocks on saveGravatar Tom Willemse2022-06-131-1/+7
| | | | Skip any that are in archived files.
* [oni-org] Search through the archive for project tasksGravatar Tom Willemse2022-06-051-13/+19
| | | | When I archive tasks I still want them to show up in the projects.
* [oni-org] Add function to write oni-project-steps dblockGravatar Tom Willemse2022-05-261-8/+9
| | | | | This allows me to run ‘org-dynamic-block-insert-dblock’ instead of having to write it manually each time.
* [oni-org] Switch to the marker's buffer before getting IDGravatar Tom Willemse2022-05-261-3/+4
|
* [oni-org] Find projects in any of my agenda filesGravatar Tom Willemse2022-05-261-1/+2
|
* [oni-org] Fix using ‘oni-org-move-subtree’ multiple ↵Gravatar Tom Willemse2022-05-131-3/+4
| | | | | | | | | | | | | times in a row Before, because of the use of ‘org-cut-subtree’, which in turn calls ‘kill-region’, which checks to see if ‘last-command’ equals ‘kill-region’ and uses either ‘kill-append’ or ‘kill-new’ repeated uses of the ‘oni-org-move-subtree’ command would append cut subtrees together and repeatedly paste the same subtrees over and over again. Setting ‘this-command’ will make sure that when the ‘kill-region’ checks the value of ‘last-command’ it won't find ‘kill-region’ there.
* [oni-org] Use ‘rx’ instead of ‘rx-to-string’Gravatar Tom Willemse2022-05-111-3/+5
| | | | | | ‘rx’ should expand to what is needed to make sure that the right thing is done. I feel more comfortable using this than ‘rx-to-string’ while unquoting the variables I use.
* [oni-org] Combine ‘oni-move-subtree-*’ into ↵Gravatar Tom Willemse2022-05-111-18/+22
| | | | | | | | ‘oni-org-move-subtree’ These two functions do essentially the same thing, but in different directions. This can also be done with one single interactive function. This way there is only one thing to call.
* [oni-org] Add commands to move subtrees relative to othersGravatar Tom Willemse2022-04-241-1/+22
|
* [oni-org] Add agenda to overview command and show 10 ↵Gravatar Tom Willemse2022-04-241-2/+3
| | | | items each
* [oni-org] Remove references to ‘oni-backlinks’Gravatar Tom Willemse2022-04-224-12/+0
| | | | | I haven't actually been using them at all, and they're just clogging up the ‘org-update-all-dblocks’ command by doing a bunch of unnecessary work.
* [oni-org] Add support for id: backlinks in oni-backlinks ↵Gravatar Tom Willemse2022-04-011-3/+6
| | | | dblock
* [oni-org] Add dynamic block for org for linking together ↵Gravatar Tom Willemse2022-04-011-0/+44
| | | | | | | | projects This is similar to my backlinks dynamic block, but it supports links by id and will print them as a checkbox so that the project can track progress by using the progress cookies.
* [oni-org] Add an agenda with tasks, articles, videos, ↵Gravatar Tom Willemse2022-04-011-1/+7
| | | | and music
* [oni-org] Show the agenda as the only windowGravatar Tom Willemse2022-03-151-1/+2
|
* [oni-org] Hide the body of the task marked as doneGravatar Tom Willemse2022-03-151-0/+7
|
* [oni-org] Enable ‘org-agenda-log-mode’ by default in ↵Gravatar Tom Willemse2022-02-281-1/+2
| | | | | | Org agendas This will show when I've marked items as done and when I've logged time on tasks.
* [oni-org] Icrease the duration of a single PomodoroGravatar Tom Willemse2022-02-081-2/+2
| | | | I've been experimenting with using 25 minutes instead of 20 for each Pomodoro.
* [oni-org] Specify some more properties on the capture frameGravatar Tom Willemse2022-02-081-1/+5
| | | | | The name helps to specify in the window manager that it shouldn't be tiled, and the width and height are just stylistic choices.
* [oni-org] Allow refiling to someday.orgGravatar Tom Willemse2022-01-121-2/+9
| | | | | I'm trying to get a little more serious about GTD, and using a someday file is part of that.
* [oni-org] Modify the columns format for the todo listGravatar Tom Willemse2022-01-111-2/+3
| | | | | Since I'm trying out the Pomodoro technique I want to be able to see at how many pomodoro's I've estimated something so that I can choose what to do next.
* [oni-org] Don't change the state of a TODO when I'm ↵Gravatar Tom Willemse2022-01-111-2/+3
| | | | | | | | | capturing it When a capture template is set up to clock in as I'm capturing it, this function would immediately change the state of the item to WIP (or whichever next status there was), but even though I'm spending time on the ticket at that point it's not in progress yet.
* [oni-org] Add a simple Pomodoro durationGravatar Tom Willemse2022-01-101-1/+12
| | | | | | I'm trying out the Pomodoro Technique and one of the things you're supposed to do is estimate your tasks in pomodoros. This change lets me estimate in, for example, 1p (20min) based on my specified pomodoro duration.
* Remove autoloads for snippet loadingGravatar Tom Willemse2021-12-011-3/+1
| | | | | Loading ‘yasnippet’ shouldn't automatically load my package configuration. If my package configuration hasn't been loaded it shouldn't try to include my snippets.
* [oni-org] Enable ‘electric-pair-local-mode’Gravatar Tom Willemse2021-11-301-1/+2
| | | | | With ‘electric-pair-local-mode’ and my inhibit function together I get a pretty reasonable way of typing fancy quotes and regular quotes in words like “don't”.
* [oni-org] Don’t require ‘ol-man’Gravatar Tom Willemse2021-10-171-2/+2
| | | | | It seems that ‘ol-man’ was moved from org-contrib to the main org repository, but the version of org hasn’t been updated yet, so my system can’t find it yet.
* [oni-org] Bring back Org RoamGravatar Tom Willemse2021-10-061-5/+6
|
* [oni-org] Don’t inherit the ‘project’ tagGravatar Tom Willemse2021-09-161-1/+2
|
* [oni-org] Log non-state notes into the task, outside a ↵Gravatar Tom Willemse2021-09-121-2/+16
| | | | drawer
* [oni-org] Remove old compiled snippets fileGravatar Tom Willemse2021-09-111-11/+0
|
* [oni-org] Add and enable `mixed-pitch' modeGravatar Tom Willemse2021-09-111-2/+3
|
* [oni-org] Fix typoGravatar Tom Willemse2021-08-301-1/+1
|
* [oni-org] Always give Album entries the “music” categoryGravatar Tom Willemse2021-08-301-0/+3
|
* [oni-org] Use ‘grep -E’ instead of ‘egrep’Gravatar Tom Willemse2021-08-301-3/+5
| | | | | ‘egrep’ doesn’t seem to be a program that exists on Windows, even after installing the GNU coreutils through at least Cygwin and MSYS2.
* [oni-org] Simplify usage of inbox.orgGravatar Tom Willemse2021-08-152-34/+31
| | | | | | Instead of everything that needs to explicitly mentioning inbox.org, make it the default notes file. Usually all new notes should be captured in there and will be moved up to other places.
* [oni-org] Add any org files to the agenda listGravatar Tom Willemse2021-08-121-3/+6
|
* [oni-org] Update Heading snippetGravatar Tom Willemse2021-08-041-6/+6
|
* [oni-org] Expand/update used todo keywordsGravatar Tom Willemse2021-08-031-3/+6
|
* [oni-org] Rename ‘oni-org-knowledge-*’ to ↵Gravatar Tom Willemse2021-07-301-16/+16
| | | | ‘oni-org-exocortex-*’
* [oni-org] Fix ‘oni-org-find-knowledge-file’Gravatar Tom Willemse2021-07-301-2/+3
| | | | | | Make sure that any new files for notes are created in the ‘oni-org-knowledge-directory’ directory and not in whichever directory the current buffer is visiting.
* [oni-org] Add some functions for easy note writingGravatar Tom Willemse2021-07-241-20/+99
|
* [oni-org] Hide both TITLE and title in org buffersGravatar Tom Willemse2021-07-241-2/+3
|
* [oni-org] Remove autoload cookieGravatar Tom Willemse2021-07-201-3/+5
|