All Projects → alphapapa → org-recent-headings

alphapapa / org-recent-headings

Licence: other
Go to recently used Org headings

Programming Languages

shell
77523 projects
emacs lisp
2029 projects
Makefile
30231 projects

Projects that are alternatives of or similar to org-recent-headings

Orgro
An org-mode file viewer for iOS and Android
Stars: ✭ 175 (+272.34%)
Mutual labels:  org-mode
Toc Org
toc-org is an Emacs utility to have an up-to-date table of contents in the org files without exporting (useful primarily for readme files on GitHub)
Stars: ✭ 202 (+329.79%)
Mutual labels:  org-mode
Evil Org Mode
Supplemental evil-mode keybindings to emacs org-mode
Stars: ✭ 241 (+412.77%)
Mutual labels:  org-mode
Org Books
Reading list management with org mode
Stars: ✭ 186 (+295.74%)
Mutual labels:  org-mode
Grasp
A reliable org-capture browser extension for Chrome/Firefox
Stars: ✭ 193 (+310.64%)
Mutual labels:  org-mode
Org Cliplink
Insert org-mode links from clipboard
Stars: ✭ 207 (+340.43%)
Mutual labels:  org-mode
Awesome Scientific Writing
⌨️ A curated list of awesome tools, demos and resources to go beyond LaTeX
Stars: ✭ 162 (+244.68%)
Mutual labels:  org-mode
org-preview-html
Automatically preview org-exported HTML files within Emacs.
Stars: ✭ 160 (+240.43%)
Mutual labels:  org-mode
Bullets.vim
🔫 Bullets.vim is a Vim/NeoVim plugin for automated bullet lists.
Stars: ✭ 199 (+323.4%)
Mutual labels:  org-mode
Emacs Easy Hugo
Emacs major mode for managing hugo
Stars: ✭ 235 (+400%)
Mutual labels:  org-mode
Braindump
knowledge repository managed with org-mode and org-roam.
Stars: ✭ 184 (+291.49%)
Mutual labels:  org-mode
Orger
Tool to convert data into searchable and interactive org-mode views
Stars: ✭ 192 (+308.51%)
Mutual labels:  org-mode
Doct
DOCT: Declarative Org Capture Templates for Emacs
Stars: ✭ 210 (+346.81%)
Mutual labels:  org-mode
Go Org
Org mode parser with html & pretty printed org rendering. also shitty static site generator.
Stars: ✭ 177 (+276.6%)
Mutual labels:  org-mode
Ob Async
Asynchronous src_block execution for org-babel
Stars: ✭ 249 (+429.79%)
Mutual labels:  org-mode
Org Pdftools
A custom org link type for pdf-tools
Stars: ✭ 165 (+251.06%)
Mutual labels:  org-mode
Verb
Organize and send HTTP requests from Emacs
Stars: ✭ 205 (+336.17%)
Mutual labels:  org-mode
trio
Datatype agnostic triple store & query engine API
Stars: ✭ 78 (+65.96%)
Mutual labels:  org-mode
ox-leanpub
Org-mode exporter for Leanpub books - mirrored from GitLab
Stars: ✭ 18 (-61.7%)
Mutual labels:  org-mode
Spongedown
Markdown with svg bob support
Stars: ✭ 234 (+397.87%)
Mutual labels:  org-mode

org-recent-headings

https://melpa.org/packages/org-recent-headings-badge.svg https://stable.melpa.org/packages/org-recent-headings-badge.svg

This package lets you quickly jump to recently used Org headings using Helm, Ivy, or plain-ol’ completing-read.

Installation

MELPA

Install package org-recent-headings and put this in your init file (using use-package):

(use-package org-recent-headings
  :config (org-recent-headings-mode))

Quelpa

Installing with Quelpa is easy:

  1. Install quelpa-use-package (which can be installed directly from MELPA).
  2. Add this form to your init file:
(use-package org-recent-headings
  :quelpa
  (org-recent-headings :fetcher github :repo "alphapapa/org-recent-headings"
                       :files (:defaults (:exclude "helm-org-recent-headings.el")))

  :config
  (org-recent-headings-mode))

Helm

If you use Helm, you may also install the package helm-org-recent-headings from MELPA, or use this:

(use-package helm-org-recent-headings
  :quelpa
  (helm-org-recent-headings :fetcher github :repo "alphapapa/org-recent-headings"
                            :files ("helm-org-recent-headings.el")))

Usage

When org-recent-headings-mode is active, whenever you jump to an Org heading (e.g. in the Agenda, with helm-org-rifle, or with any function listed in org-recent-headings-advise-functions), the heading you jump to will be added to org-recent-headings-list. Then you can jump to those headings with these commands:

  • org-recent-headings
  • helm-org-recent-headings (if installed)

Customization

The org-recent-headings-advise-functions list has several commonly used functions, but users will likely want to customize this list. You might want to add functions to it, like isearch functions, Worf functions, or commands from other packages you may use. (Suggestions for the default list of functions are welcome!)

org-recent-headings-show-entry-function lets you choose the default way to jump to headings, either in their real buffer, or in an indirect, narrowed buffer (with org-tree-to-indirect-buffer).

There are a few other settings as well. Customize the org-recent-headings group to see them all.

Helm

If you use Helm and have installed helm-org-recent-headings, you can use helm-source-org-recent-headings with Helm commands, e.g.:

(helm :sources helm-org-recent-headings-source)

(helm-other-buffer (list helm-source-buffers-list
                         helm-org-recent-headings-source)
                   "My Helm command")

Changelog

0.2-pre

Added

  • Variable org-recent-headings-reject-any-fns may be a list of functions used to test new entries; if any return non-nil, an entry is not saved to the recent headings list. This may be used to e.g. only save entries from certain directories by using a function like:
(lambda (entry)
  (not (string-match (rx-to-string `(seq bos ,(expand-file-name "~/org/")) t)
                     (org-recent-headings-entry-file entry))))

Fixed

  • Storing entries from indirect buffers.
  • Display an error if org-id-find can’t find an entry.
  • Storing and finding outline paths which include links in headings.

Changed

  • Entries are now stored as structs. The list should be automatically converted to the new format.

Removed

  • Helm-related functionality, now moved to a separate package, helm-org-recent-headings.
  • Ivy-related functionality, which only consisted of a single command that bound completing-read-function to ivy-completing-read and called org-recent-headings. Ivy users will probably use ivy-mode, which obviates the removed command (just call org-recent-headings). Removing it avoids dependency problems which can be very frustrating to users.

0.1

First tagged release, almost 2 years since first commit.

Development

Bug reports, suggestions, feedback — oh my!

Suggestions for functions to add to org-recent-headings-advise-functions are especially welcome. I’d like the default to be as useful as possible.

Credits

  • Thanks to zeltak for his faithful help testing this and other packages of mine!

License

GPLv3 or any later version.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].