forked from kankaristo/atom-multi-cursor-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "multi-cursor-plus",
"main": "./lib/multi-cursor-plus",
"version": "1.2.0",
"description": "Improved multi-cursor functionality for Atom",
"keywords": [],
"activationCommands": {
"atom-text-editor": [
"multi-cursor-plus:mark",
"multi-cursor-plus:move-up",
"multi-cursor-plus:move-down",
"multi-cursor-plus:move-left",
"multi-cursor-plus:move-right",
"multi-cursor-plus:move-to-beginning-of-word",
"multi-cursor-plus:move-to-end-of-word",
"multi-cursor-plus:move-to-first-character-of-line",
"multi-cursor-plus:move-to-end-of-line",
"multi-cursor-plus:move-to-top",
"multi-cursor-plus:move-to-bottom",
"multi-cursor-plus:select-up",
"multi-cursor-plus:select-down",
"multi-cursor-plus:select-left",
"multi-cursor-plus:select-right",
"multi-cursor-plus:select-to-beginning-of-word",
"multi-cursor-plus:select-to-end-of-word",
"multi-cursor-plus:select-to-first-character-of-line",
"multi-cursor-plus:select-to-end-of-line",
"multi-cursor-plus:select-to-top",
"multi-cursor-plus:select-to-bottom",
"multi-cursor-plus:mark-previous-like-this",
"multi-cursor-plus:mark-next-like-this"
]
},
"repository": "https://github.com/kankaristo/atom-multi-cursor-plus",
"license": "MIT",
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"underscore-plus": "^1.6.6"
}
}