branch: elpa/multiple-cursors
commit 7d843984b3e99d45682d51d30b5fa161ee90c7af
Author: Iqbal Ansari <[email protected]>
Commit: Iqbal Ansari <[email protected]>
Add missing require to mc-hide-unmatched-lines-mode
The function `hum/hide-unmatched-lines` uses the function
`mc/cursor-beg`, defined in `mc-mark-more.el`, however the feature is
not required leading to failures in some edge case. Fixes #187
---
mc-hide-unmatched-lines-mode.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/mc-hide-unmatched-lines-mode.el b/mc-hide-unmatched-lines-mode.el
index 684080e..5221ef8 100644
--- a/mc-hide-unmatched-lines-mode.el
+++ b/mc-hide-unmatched-lines-mode.el
@@ -30,6 +30,7 @@
;;; Code:
(require 'multiple-cursors-core)
+(require 'mc-mark-more)
(defvar hum/hide-unmatched-lines-mode-map (make-sparse-keymap)
"Keymap for hide unmatched lines is mainly for rebinding C-g")