4

我已经安装了多光标包,但是我无法正常工作。只能修改一个游标,其余游标什么都不做。

我已经为多游标包配置了我的 .emacs 文件,如下所示:

(require 'multiple-cursors)
(global-set-key (kbd "C-c m c") 'mc/edit-lines)
(global-set-key (kbd "C->") 'mc/mark-next-like-this)
(global-set-key (kbd "C-<") 'mc/mark-previous-like-this)
(global-set-key (kbd "C-c C-<") 'mc/mark-all-like-this)

有人可以帮忙吗?谢谢。

4

1 回答 1

8

我的水晶球告诉我,曾几何时,原始海报出现了一个交互式问题,询问他/她是否对所有光标执行相同的命令;并且,OP 用“不”回答了这个问题。因此,Multiple Cursors 包向 中添加了一个条目mc/lists-file,该条目的默认位置为: (locate-user-emacs-file ".mc-lists.el")-- 参见https://github.com/magnars/multiple-cursors.el/blob/master/multiple-cursors-core.el#L627

OP 应该打开上述文件,看看是否应该手动删除他/她之前的选择。该文件包含如下内容:

;; This file is automatically generated by the multiple-cursors extension.
;; It keeps track of your preferences for running commands with multiple cursors.

(setq mc/cmds-to-run-for-all
      '(
      my-custom-function-one
      org-self-insert-command
      ))

(setq mc/cmds-to-run-once
      '(
      mime-preview-scroll-down-entity
      my-custom-function-two
      ))


(provide '.multiple_cursors)
于 2019-09-25T19:07:28.413 回答