emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/shell-command+ 437fd2d8dc: Remove 'shell-command+-expan


From: ELPA Syncer
Subject: [elpa] externals/shell-command+ 437fd2d8dc: Remove 'shell-command+-expand-%-fmt'
Date: Thu, 1 Sep 2022 09:58:31 -0400 (EDT)

branch: externals/shell-command+
commit 437fd2d8dcac5f344198d74b37ad74358a4645b9
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Remove 'shell-command+-expand-%-fmt'
---
 shell-command+.el | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/shell-command+.el b/shell-command+.el
index d0b2f126e9..a569dbb9f3 100644
--- a/shell-command+.el
+++ b/shell-command+.el
@@ -67,7 +67,6 @@
 ;; - Allow adding or removing features using
 ;;   `shell-command+-features'.
 ;; - Add `shell-command+-default-region' user option.
-;; - Add optional alternative to %-expansion (`shell-command+-expand-%-fmt')
 ;; - Remove `shell-command+-use-eshell'.
 ;; - Deprecate `shell-command+-enable-file-substitution'.
 ;; - Minor bug fixes and stability improvements.
@@ -200,39 +199,6 @@ For PARSE, FORM and CONTEXT see `shell-command+-features'."
 insert a literal % quote it using a backslash.")
 
 
-;;;; generic %-sequence expansion
-
-(defun shell-command+-expand-%-fmt-spec ()
-  "Return a `format-spec' specification for `shell-command+-expand-%-fmt'."
-  `((?f . ,(buffer-file-name))
-    (?o . ,(buffer-file-name (other-buffer)))
-    (?b . ,(and (buffer-file-name) (file-name-base (buffer-file-name))))
-    (?e . ,(and (buffer-file-name) (file-name-extension (buffer-file-name))))
-    (?y . ,(current-kill 0))))
-
-(defun shell-command+-expand-%-fmt (parse form context)
-  "Generalised version of `shell-command+-expand-%'.
-For PARSE, FORM and CONTEXT see `shell-command+-features'."
-  ;; Idea stolen from Alvaro Ramirez' "dwim-shell-command"
-  (setf (nth 3 parse)
-        (format-spec
-         (nth 3 parse)
-         (shell-command+-expand-%-fmt-spec)))
-  (list parse form context))
-
-(put #'shell-command+-expand-%-fmt
-     'shell-command+-docstring
-     "Inside COMMAND, replace the following %-sequences:
-
-- %f with the result of `buffer-file-name'
-- %o with the result of `buffer-file-name' of `other-buffer'
-- %b with the base of `buffer-file-name'
-- %e with the file extension of `buffer-file-name'
-- %y with the head of the kill ring
-
-See `format-spec' for details on how %-sequences are handled.")
-
-
 ;;;; Implicit cd
 
 (defun shell-command+-expand-path (path)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]