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
This commit is contained in:
Iqbal Ansari 2015-03-08 11:52:56 +05:30
parent dc1bfbf816
commit 7d843984b3

View File

@ -30,6 +30,7 @@
;;; Code: ;;; Code:
(require 'multiple-cursors-core) (require 'multiple-cursors-core)
(require 'mc-mark-more)
(defvar hum/hide-unmatched-lines-mode-map (make-sparse-keymap) (defvar hum/hide-unmatched-lines-mode-map (make-sparse-keymap)
"Keymap for hide unmatched lines is mainly for rebinding C-g") "Keymap for hide unmatched lines is mainly for rebinding C-g")