[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/yasnippet 37d0b2790f 1/2: yasnippet.el (yas-maybe-load-
From: |
ELPA Syncer |
Subject: |
[elpa] externals/yasnippet 37d0b2790f 1/2: yasnippet.el (yas-maybe-load-snippet-buffer): Don't move point (#1146) |
Date: |
Sun, 12 Jan 2025 12:59:56 -0500 (EST) |
branch: externals/yasnippet
commit 37d0b2790f8e949f993333b04e4177fdbf7c5fd9
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
yasnippet.el (yas-maybe-load-snippet-buffer): Don't move point (#1146)
---
yasnippet.el | 28 +++++++++++++++-------------
1 file changed, 15 insertions(+), 13 deletions(-)
diff --git a/yasnippet.el b/yasnippet.el
index 782c440588..3f007daa84 100644
--- a/yasnippet.el
+++ b/yasnippet.el
@@ -1,6 +1,6 @@
;;; yasnippet.el --- Yet another snippet extension for Emacs -*-
lexical-binding: t; -*-
-;; Copyright (C) 2008-2024 Free Software Foundation, Inc.
+;; Copyright (C) 2008-2025 Free Software Foundation, Inc.
;; Authors: pluskid <pluskid@gmail.com>,
;; João Távora <joaotavora@gmail.com>,
;; Noam Postavsky <npostavs@gmail.com>
@@ -2784,18 +2784,20 @@ Return the `yas--template' object created"
(defun yas-maybe-load-snippet-buffer ()
"Added to `after-save-hook' in `snippet-mode'."
- (let* ((mode (intern (file-name-sans-extension
- (file-name-nondirectory
- (directory-file-name default-directory)))))
- (current-snippet
- (apply #'yas--define-snippets-2 (yas--table-get-create mode)
- (yas--parse-template buffer-file-name)))
- (uuid (yas--template-uuid current-snippet)))
- (unless (equal current-snippet
- (if uuid (yas--get-template-by-uuid mode uuid)
- (yas--lookup-snippet-1
- (yas--template-name current-snippet) mode)))
- (yas-load-snippet-buffer mode t))))
+ (save-excursion ;; Issue #1146. Here or in `yas--parse-template`?
+ (let* ((mode (intern (file-name-sans-extension
+ (file-name-nondirectory
+ (directory-file-name default-directory)))))
+ (current-snippet
+ (apply #'yas--define-snippets-2 (yas--table-get-create mode)
+ ;; FIXME: `yas-load-snippet-buffer' will *re*parse!
+ (yas--parse-template buffer-file-name)))
+ (uuid (yas--template-uuid current-snippet)))
+ (unless (equal current-snippet
+ (if uuid (yas--get-template-by-uuid mode uuid)
+ (yas--lookup-snippet-1
+ (yas--template-name current-snippet) mode)))
+ (yas-load-snippet-buffer mode t)))))
(defun yas-load-snippet-buffer-and-close (table &optional kill)
"Load and save the snippet, then `quit-window' if saved.