mirror of
https://github.com/magnars/multiple-cursors.el.git
synced 2026-05-10 01:18:19 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 20e692ae03 | |||
| de3306066a | |||
| 6745142d87 |
+3
-3
@@ -12,9 +12,9 @@ before_install:
|
|||||||
sudo apt-get install -qq
|
sudo apt-get install -qq
|
||||||
emacs24 emacs24-el emacs24-common-non-dfsg;
|
emacs24 emacs24-el emacs24-common-non-dfsg;
|
||||||
fi
|
fi
|
||||||
- curl -fsSkL https://raw.github.com/rejeep/carton/master/go | sh
|
- curl -fsSkL https://raw.github.com/rejeep/cask.el/master/go | sh
|
||||||
- export PATH="/home/travis/.carton/bin:$PATH"
|
- export PATH="/home/travis/.cask/bin:$PATH"
|
||||||
- carton
|
- cask
|
||||||
env:
|
env:
|
||||||
- EMACS=emacs24 TAGS=""
|
- EMACS=emacs24 TAGS=""
|
||||||
script:
|
script:
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
(source "melpa" "http://melpa.milkbox.net/packages/")
|
(source melpa)
|
||||||
|
|
||||||
(package-file "multiple-cursors.el")
|
(package-file "multiple-cursors.el")
|
||||||
|
|
||||||
@@ -153,11 +153,11 @@ You'll find the repo at:
|
|||||||
https://github.com/magnars/multiple-cursors.el
|
https://github.com/magnars/multiple-cursors.el
|
||||||
|
|
||||||
To fetch the test dependencies, install
|
To fetch the test dependencies, install
|
||||||
[carton](https://github.com/rejeep/carton) if you haven't already,
|
[cask](https://github.com/rejeep/cask.el) if you haven't already,
|
||||||
then:
|
then:
|
||||||
|
|
||||||
$ cd /path/to/multiple-cursors
|
$ cd /path/to/multiple-cursors
|
||||||
$ carton
|
$ cask
|
||||||
|
|
||||||
Run the tests with:
|
Run the tests with:
|
||||||
|
|
||||||
|
|||||||
@@ -306,8 +306,8 @@ been remapped. And certain modes (cua comes to mind) will change their
|
|||||||
remapping based on state. So a command that changes the state will afterwards
|
remapping based on state. So a command that changes the state will afterwards
|
||||||
not be recognized through the command-remapping lookup."
|
not be recognized through the command-remapping lookup."
|
||||||
(unless mc--executing-command-for-fake-cursor
|
(unless mc--executing-command-for-fake-cursor
|
||||||
(let (cmd (or (command-remapping this-original-command)
|
(let ((cmd (or (command-remapping this-original-command)
|
||||||
this-original-command))
|
this-original-command)))
|
||||||
(setq mc--this-command (and (not (eq cmd 'god-mode-self-insert))
|
(setq mc--this-command (and (not (eq cmd 'god-mode-self-insert))
|
||||||
cmd)))))
|
cmd)))))
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
(define-package "multiple-cursors" "1.2.1"
|
(define-package "multiple-cursors" "1.2.3"
|
||||||
"Multiple cursors for Emacs.")
|
"Multiple cursors for Emacs.")
|
||||||
|
|||||||
+1
-2
@@ -1,3 +1,2 @@
|
|||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
ECUKES=$(find elpa/ecukes-*/ecukes | tail -1)
|
cask exec ecukes "$@"
|
||||||
carton exec "$ECUKES" "$@"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user