This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; yas-edit.el -- Quickly edit yas snippets | |
| ;; Copyright Tal Wrii ([email protected]) | |
| ;; LICENSED UNDER GPLv3 | |
| (require 'yasnippet) | |
| (defvar yas-edit-callback nil) | |
| (defvar yas-edit-last nil "The last snippet expanded") | |
| (defun yas-edit (prefix) | |
| (interactive "P") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; [[elfeed:pragmaticemacs.com#http://pragmaticemacs.com/?p=752][A workflow to quickly add photos to org-mode notes]] | |
| ;; use case is taking a photo of a slide in a conference and uploading | |
| ;; it to syncthing and get it on your computer. You then want to embed | |
| ;; it in an org-mode document by moving it to the subfolder and | |
| ;; renaming according to the current section of the org file, avoiding | |
| ;; name clashes | |
| ;; required libraries | |
| (require 'dash) | |
| (require 'swiper) |
OlderNewer