From 984f2146e2a377b7b3ff12562b05cb439d2f588c Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 23 Oct 2023 06:45:50 +0200 Subject: [PATCH] Remove the loccur package --- configuration.org | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/configuration.org b/configuration.org index 6643b08..cd0fe93 100644 --- a/configuration.org +++ b/configuration.org @@ -2069,25 +2069,6 @@ And apply it to dired, too. ("SPC" . ace-jump-mode))) #+END_SRC -** occur-like folding in the current buffer - -#+BEGIN_SRC emacs-lisp -(defun gpolonkai/toggle-loccur () - "Toggle `loccur-mode'. - -If `loccur-mode' is not active, starts it (which, in turn, will ask for the -pattern to look for). If it is active, it will disable it." - (interactive) - (if loccur-mode - (loccur-mode nil) - (call-interactively 'loccur))) - -(use-package loccur - :bind - (:map gpolonkai/pers-map - ("C-o" . gpolonkai/toggle-loccur))) -#+END_SRC - ** Help merging ~pacsave~ and ~pacnew~ files #+BEGIN_SRC emacs-lisp