3 ex-mode for Atom's vim-mode
7 Install both [vim-mode](https://github.com/atom/vim-mode) and ex-mode. Type `:` in command mode. Enter `w` or `write`.
11 Use the service to register commands, from your own package, or straight from `init.coffee`:
14 # in Atom's init.coffee
15 atom.packages.onDidActivatePackage (pack) ->
16 if pack.name == 'ex-mode'
17 Ex = pack.mainModule.provideEx()
18 Ex.registerCommand 'z', -> console.log("Zzzzzz...")
21 See `lib/ex.coffee` for some examples commands. Contributions are very welcome!
25 Groundwork is done. More ex commands are easy to add and will be coming as time permits and contributions come in.