Fix issue with phi-search

This commit is contained in:
2017-10-04 15:21:26 +01:00
parent 7a8c06846d
commit ec85dbdf02
2 changed files with 3 additions and 3 deletions

View File

@@ -6,6 +6,8 @@
;;; Code:
(require 'siren-phi-search)
(use-package multiple-cursors
:bind
("C-x C-@" . mc/edit-lines) ;; Terminal
@@ -16,8 +18,6 @@
("M-RET" . set-rectangular-region-anchor)
:config
(require 'siren-phi-search)
(setq mc/edit-lines-empty-lines 'ignore)
;; Make alt-<click> add additional cursors

View File

@@ -8,7 +8,7 @@
(use-package phi-search
:config
(setq phi-search-limit 3000)
(setq phi-search-limit 3000))
(provide 'siren-phi-search)
;;; siren-phi-search.el ends here