]> git.r.bdr.sh - rbdr/dotfiles/blame - atom/packages/ex-mode/README.md
Adds atom
[rbdr/dotfiles] / atom / packages / ex-mode / README.md
CommitLineData
24c7594d
BB
1# ex-mode package
2
3ex-mode for Atom's vim-mode
4
5## Use
6
7Install both [vim-mode](https://github.com/atom/vim-mode) and ex-mode. Type `:` in command mode. Enter `w` or `write`.
8
9## Extend
10
11Use the service to register commands, from your own package, or straight from `init.coffee`:
12
13```coffee
14# in Atom's init.coffee
15atom.packages.onDidActivatePackage (pack) ->
16 if pack.name == 'ex-mode'
17 Ex = pack.mainModule.provideEx()
18 Ex.registerCommand 'z', -> console.log("Zzzzzz...")
19```
20
21See `lib/ex.coffee` for some examples commands. Contributions are very welcome!
22
23## Status
24
25Groundwork is done. More ex commands are easy to add and will be coming as time permits and contributions come in.
26
27## License
28
29MIT