summaryrefslogtreecommitdiff
path: root/elpa/multiple-cursors-20220328.1724/mc-mark-pop.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-06-07 08:23:47 -0400
committermattkae <mattkae@protonmail.com>2022-06-07 08:23:47 -0400
commitbd18a38c2898548a3664a9ddab9f79c84f2caf4a (patch)
tree95b9933376770381bd8859782ae763be81c2d72b /elpa/multiple-cursors-20220328.1724/mc-mark-pop.el
parentb07628dddf418d4f47b858e6c35fd3520fbaeed2 (diff)
parentef160dea332af4b4fe5e2717b962936c67e5fe9e (diff)
Merge conflict
Diffstat (limited to 'elpa/multiple-cursors-20220328.1724/mc-mark-pop.el')
-rw-r--r--elpa/multiple-cursors-20220328.1724/mc-mark-pop.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/elpa/multiple-cursors-20220328.1724/mc-mark-pop.el b/elpa/multiple-cursors-20220328.1724/mc-mark-pop.el
deleted file mode 100644
index 8a18381..0000000
--- a/elpa/multiple-cursors-20220328.1724/mc-mark-pop.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; mc-mark-pop.el --- Pop cursors off of the mark stack
-
-(require 'multiple-cursors-core)
-
-;;;###autoload
-(defun mc/mark-pop ()
- "Add a cursor at the current point, pop off mark ring and jump
-to the popped mark."
- (interactive)
- ;; If the mark happens to be at the current point, just pop that one off.
- (while (eql (mark) (point))
- (pop-mark))
- (mc/create-fake-cursor-at-point)
- (exchange-point-and-mark)
- (pop-mark)
- (mc/maybe-multiple-cursors-mode))
-
-;; A good key binding for this feature is perhaps "C-S-p" ('p' for pop).
-
-(provide 'mc-mark-pop)
-
-;;; mc-mark-pop.el ends here