Ex mode for Atom
`:tabedit` now works as an alias to `:edit` with a path and as an alias to `:tabnew` without. `:tabnew` is a new command that opens a new tab with a new file if used without a path and works as an alias to `:tabedit` with one. `:tabclose` now works as a proper alias to `:quit` (i.e. passes the arguments) `:edit` now works more like before - it opens a given path in a new tab. It also doesn't do anything if the file was modified since the last commit, unless forced by using `:edit!` `:write` works properly again and doesn't overwrite files, unless forced by using `:write!` `:xit` is now called `:xit` and not just `:x` `:substitute` now properly replaces multiple groups (`:s/(a)b(c)/X\1\2X\0`) |
||
|---|---|---|
| keymaps | ||
| lib | ||
| spec | ||
| styles | ||
| .gitignore | ||
| CHANGELOG.md | ||
| LICENSE.md | ||
| package.json | ||
| README.md | ||
ex-mode package
ex-mode for Atom's vim-mode
Use
Install both vim-mode and ex-mode. Type : in command mode. Enter w or write.
Extend
Use the service to register commands, from your own package, or straight from init.coffee:
# in Atom's init.coffee
atom.packages.onDidActivatePackage (pack) ->
if pack.name == 'ex-mode'
Ex = pack.mainModule.provideEx()
Ex.registerCommand 'z', -> console.log("Zzzzzz...")
See lib/ex.coffee for some examples commands. Contributions are very welcome!
Status
Groundwork is done. More ex commands are easy to add and will be coming as time permits and contributions come in.
License
MIT