Procházet zdrojové kódy

Add my-occur

master
10sr před 5 roky
rodič
revize
e7ab9e6fa0
Podepsáno: 10sr ID GPG klíče: 7BEC428194130EB2
1 změnil soubory, kde provedl 7 přidání a 2 odebrání
  1. +7
    -2
      emacs.el

+ 7
- 2
emacs.el Zobrazit soubor

@@ -383,8 +383,6 @@ found, otherwise returns nil."
(global-set-key (kbd "C-s") 'isearch-forward-regexp)
(global-set-key (kbd "C-r") 'isearch-backward-regexp)

(define-key ctl-x-map (kbd "C-o") 'occur)

(require 'page-ext nil t)

(when (safe-require-or-eval 'page-break-lines)
@@ -1740,6 +1738,13 @@ and search from projectile root (if projectile is available)."
(define-key ctl-x-map "s" 'my-rgrep)
(define-key ctl-x-map "." 'my-rgrep-thing-at-point-projectile-root)

(defun my-occur (regexp &optional region)
"My occur command to search REGEXP."
(interactive (list (read-string "List lines matching regexp: "
(thing-at-point 'symbol t))))
(occur regexp nil region))
(define-key ctl-x-map (kbd "C-o") 'my-occur)

(set-variable 'dumb-jump-prefer-searcher 'rg)

(defalias 'make 'compile)


Načítá se…
Zrušit
Uložit