- If the second address is empty, it is assumed to be `.`
- Regex addresses and `:substitute` now integrate with search history and
respect case sensitivity settings
- Patterns for `:substitute` can't be delimited by
- `:set` now supports inverting options using `:set inv{option}` and
`:set {option}!`
- New commands: `:new`, `:vnew`, `:exit`, `:xall`, `:wall`, `:qall`, `:update`
40 lines
832 B
JSON
40 lines
832 B
JSON
{
|
|
"name": "ex-mode",
|
|
"main": "./lib/ex-mode",
|
|
"version": "0.6.2",
|
|
"description": "Ex for Atom's vim-mode",
|
|
"activationCommands": {
|
|
"atom-workspace": "ex-mode:open"
|
|
},
|
|
"repository": "https://github.com/lloeki/ex-mode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"atom": ">=0.200.0 <2.0.0"
|
|
},
|
|
"dependencies": {
|
|
"underscore-plus": "1.x",
|
|
"event-kit": "^0.7.2",
|
|
"space-pen": "^5.1.1",
|
|
"atom-space-pen-views": "^2.0.4",
|
|
"fs-plus": "^2.2.8"
|
|
},
|
|
"consumedServices": {
|
|
"vim-mode": {
|
|
"versions": {
|
|
"^0.1.0": "consumeVim"
|
|
}
|
|
}
|
|
},
|
|
"providedServices": {
|
|
"ex-mode": {
|
|
"description": "Ex commands",
|
|
"versions": {
|
|
"0.20.0": "provideEx_0_20",
|
|
"0.30.0": "provideEx_0_30"
|
|
}
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"node-uuid": "^1.4.2"
|
|
}
|
|
}
|