branch: elpa/multiple-cursors
commit c9548eae5bc5726173b3a4d112c3d5821b7e6901
Author: Magnar Sveen <[email protected]>
Commit: Magnar Sveen <[email protected]>

    Use inverse face for cursor
    
     - otherwise you can't see what's hiding behind the fake cursors
---
 multiple-cursors-core.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/multiple-cursors-core.el b/multiple-cursors-core.el
index fffacbb..cde86d3 100644
--- a/multiple-cursors-core.el
+++ b/multiple-cursors-core.el
@@ -1,7 +1,7 @@
 (eval-when-compile (require 'cl))
 
 (defface mc/cursor-face
-  '((t :inherit cursor))
+  '((t (:inverse-video t)))
   "The face used for fake cursors"
   :group 'multiple-cursors)
 

Reply via email to