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