From: Eshel Yaron Date: Mon, 17 Mar 2025 10:49:39 +0000 (+0100) Subject: Simplify tempo.el a bit and use it in refactor.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0724da768862bc7a04c38aeb8e0d29028e92bc17;p=emacs.git Simplify tempo.el a bit and use it in refactor.el --- diff --git a/lisp/org/org-tempo.el b/lisp/org/org-tempo.el index 3716122723a..2718d30d6eb 100644 --- a/lisp/org/org-tempo.el +++ b/lisp/org/org-tempo.el @@ -81,8 +81,8 @@ Do not use \"I\" as a KEY, as it is reserved for expanding (defun org-tempo-setup () "Setup tempo tags and match finder for the current buffer." (org-tempo--update-maybe) - (tempo-use-tag-list 'org-tempo-tags) - (setq-local tempo-match-finder "^ *\\(<[[:word:]]+\\)\\=")) + (setq-local tempo-tags org-tempo-tags + tempo-match-finder "^ *\\(<[[:word:]]+\\)\\=")) (defun org-tempo--keys () "Return a list of all Org Tempo expansion strings, like \" . ,rest) (if on-region - (progn - (goto-char tempo-region-stop) - (indent-region tempo-region-start - tempo-region-stop)) + (dolist (element elements) + (pcase element + ((pred stringp) (tempo-process-and-insert-string element)) + (`(p . ,rest) (tempo-insert-prompt-compat rest)) + (`(P . ,rest) (let ((tempo-interactive t)) + (tempo-insert-prompt-compat rest))) + ;; (`(v ,name ,data) (tempo-save-named name nil data)) + (`(r . ,rest) (if tempo-on-region + (goto-char tempo-region-stop) + (tempo-insert-prompt-compat rest))) + (`(r> . ,rest) (if tempo-on-region + (progn + (goto-char tempo-region-stop) + (indent-region tempo-region-start + tempo-region-stop)) (tempo-insert-prompt-compat rest))) - (`(s ,name) (tempo-insert-named name)) - (`(l . ,rest) (dolist (elt rest) (tempo-insert elt on-region))) - ('p (tempo-insert-mark (point-marker))) - ('r (if on-region - (goto-char tempo-region-stop) - (tempo-insert-mark (point-marker)))) - ('r> (if on-region - (progn - (goto-char tempo-region-stop) - (indent-region tempo-region-start tempo-region-stop)) - (tempo-insert-mark (point-marker)))) - ('> (indent-according-to-mode)) - ('& (if (not (or (= (current-column) 0) - (save-excursion - (re-search-backward - "^\\s-*\\=" nil t)))) - (insert "\n"))) - ('% (if (not (or (eolp) - (save-excursion - (re-search-forward - "\\=\\s-*$" nil t)))) - (insert "\n"))) - ('n (insert "\n")) - ('n> (insert "\n") (indent-according-to-mode)) - ;; Bug: If the 'o is the first element in a template, strange - ;; things can happen when the template is inserted at the - ;; beginning of a line. - ('o (if (not (or on-region - (eolp) - (save-excursion - (re-search-forward - "\\=\\s-*$" nil t)))) - (open-line 1))) - ('nil nil) - (_ (tempo-insert (or (tempo-is-user-element element) - (eval element t)) - on-region)))) + (`(s ,name) (tempo-insert-named name)) + (`(l . ,rest) (dolist (elt rest) (tempo-insert elt))) + ('p (tempo-insert-mark (point-marker))) + ('r (if tempo-on-region + (goto-char tempo-region-stop) + (tempo-insert-mark (point-marker)))) + ('r> (if tempo-on-region + (progn + (goto-char tempo-region-stop) + (indent-region tempo-region-start tempo-region-stop)) + (tempo-insert-mark (point-marker)))) + ('> (indent-according-to-mode)) + ('^ (indent-region (car tempo-marks) (point))) + ('& (if (not (or (= (current-column) 0) + (save-excursion + (re-search-backward + "^\\s-*\\=" nil t)))) + (insert "\n"))) + ('% (if (not (or (eolp) + (save-excursion + (re-search-forward + "\\=\\s-*$" nil t)))) + (insert "\n"))) + ('n (insert "\n")) + ('n% (if (nth 4 (syntax-ppss)) (insert "\n") (message "nope"))) + ('n> (insert "\n") (indent-according-to-mode)) + ;; Bug: If the 'o is the first element in a template, strange + ;; things can happen when the template is inserted at the + ;; beginning of a line. + ('o (if (not (or tempo-on-region + (eolp) + (save-excursion + (re-search-forward + "\\=\\s-*$" nil t)))) + (open-line 1))) + ('nil nil) + (_ (tempo-insert + (run-hook-with-args-until-success 'tempo-user-element-functions element)))))) ;;; ;;; tempo-insert-prompt @@ -422,20 +405,6 @@ never prompted." (t (tempo-insert-mark (point-marker)))))) -;;; -;;; tempo-is-user-element - -(defun tempo-is-user-element (element) - "Try all the user-defined element handlers in `tempo-user-element-functions'." - (run-hook-with-args-until-success 'tempo-user-element-functions element)) - -;;; -;;; tempo-forget-insertions - -(defun tempo-forget-insertions () - "Forget all the saved named insertions." - (setq tempo-named-insertions nil)) - ;;; ;;; tempo-save-named @@ -475,14 +444,13 @@ processor." ((stringp insertion) (insert insertion)) (t - (tempo-insert insertion nil))))) - + (tempo-insert insertion))))) ;;; ;;; tempo-process-and-insert-string (defun tempo-process-and-insert-string (string) - "Insert a string from a template. + "Insert a STRING from a template. Run a string through the preprocessors in `tempo-insert-string-functions' and insert the results." (cond ((null tempo-insert-string-functions) @@ -502,7 +470,7 @@ and insert the results." ;;; tempo-insert-mark (defun tempo-insert-mark (mark) - "Insert a mark `tempo-marks' while keeping it sorted." + "Add a MARK to `tempo-marks' while keeping it sorted." (cond ((null tempo-marks) (setq tempo-marks (list mark))) ((< mark (car tempo-marks)) (setq tempo-marks (cons mark tempo-marks))) (t (let ((lp tempo-marks)) @@ -547,79 +515,6 @@ and insert the results." (if prev-mark (goto-char prev-mark)))) -;;; -;;; tempo-add-tag - -(defun tempo-add-tag (tag template &optional tag-list) - "Add a template tag. -Add the TAG, that should complete to TEMPLATE to the list in TAG-LIST, -or to `tempo-tags' if TAG-LIST is nil. If TAG was already in the list, -replace its template with TEMPLATE." - - (interactive "sTag: \nCTemplate: ") - (if (null tag-list) - (setq tag-list 'tempo-tags)) - (let ((entry (assoc tag (symbol-value tag-list)))) - (if entry - ;; Tag is already in the list, assign a new template to it. - (setcdr entry template) - ;; Tag is not present in the list, add it with its template. - (set tag-list (cons (cons tag template) (symbol-value tag-list))))) - ;; Invalidate globally if we're modifying 'tempo-tags'. - (tempo-invalidate-collection (eq tag-list 'tempo-tags))) - -;;; -;;; tempo-use-tag-list - -(defun tempo-use-tag-list (tag-list &optional completion-function) - "Install TAG-LIST to be used for template completion in the current buffer. -TAG-LIST is a symbol whose variable value is a tag list created with -`tempo-add-tag'. - -COMPLETION-FUNCTION is an obsolete option for specifying an optional -function or string that is used by \\[tempo-complete-tag] to find a -string to match the tag against. It has the same definition as the -variable `tempo-match-finder'. In this version, supplying a -COMPLETION-FUNCTION just sets `tempo-match-finder' locally." - (alist-set tag-list tempo-local-tags completion-function) - (if completion-function - (setq tempo-match-finder completion-function)) - (tempo-invalidate-collection)) - -;;; -;;; tempo-invalidate-collection - -(defun tempo-invalidate-collection (&optional global) - "Mark the tag collection as obsolete. -Whenever it is needed again it will be rebuilt. If GLOBAL is non-nil, -mark the tag collection of all buffers as obsolete, not just the -current one." - (if global - (dolist (buffer (buffer-list)) - (with-current-buffer buffer - (when (assq 'tempo-dirty-collection (buffer-local-variables)) - (setq tempo-dirty-collection t)))) - (setq tempo-dirty-collection t))) - -;;; -;;; tempo-build-collection - -(defun tempo-build-collection () - "Build a collection of all the tags and return it. -If `tempo-dirty-collection' is nil, the old collection is reused." - (prog1 - (or (and (not tempo-dirty-collection) - tempo-collection) - (setq tempo-collection - (apply #'append - (mapcar (lambda (tag-list) - ; If the format for - ; tempo-local-tags changes, - ; change this - (eval (car tag-list) t)) - tempo-local-tags)))) - (setq tempo-dirty-collection nil))) - ;;; ;;; tempo-find-match-string @@ -650,7 +545,7 @@ no match at all. If a single match is found, the corresponding template is expanded in place of the matching string." (interactive "*") - (let* ((collection (tempo-build-collection)) + (let* ((collection tempo-tags) (match-info (tempo-find-match-string tempo-match-finder)) (match-string (car match-info)) (match-start (cdr match-info)) @@ -684,7 +579,7 @@ space bar, and looks something like this: (insert \" \")))" (interactive "*") - (let* ((collection (tempo-build-collection)) + (let* ((collection tempo-tags) (match-info (tempo-find-match-string tempo-match-finder)) (match-string (car match-info)) (match-start (cdr match-info))