Ex mode for Atom
Find a file
Jasper v. B. d88aeb71e6 Fix consumeVim version so we can use it
https://github.com/atom/vim-mode only provides provideVimMode in version 0.1.0.
2015-03-09 11:45:07 +01:00
keymaps working title 2015-02-19 18:11:25 +01:00
lib Merge pull request #18 from jazzpi/master 2015-03-08 14:18:06 +01:00
spec blank package 2015-02-19 08:29:59 +01:00
styles blank package 2015-02-19 08:29:59 +01:00
.gitignore blank package 2015-02-19 08:29:59 +01:00
CHANGELOG.md Added :wq 2015-02-23 16:22:23 +01:00
LICENSE.md blank package 2015-02-19 08:29:59 +01:00
package.json Fix consumeVim version so we can use it 2015-03-09 11:45:07 +01:00
README.md extensibility via services 2015-02-23 14:59:33 +01:00

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