Ex mode for Atom
Find a file
Loic Nageleisen add34853ac Merge pull request #61 from ardrigh/patch-1
Display ':' at start of the command input line
2015-07-28 11:34:05 +02:00
keymaps working title 2015-02-19 18:11:25 +01:00
lib Merge pull request #74 from mleeds95/fix-write 2015-07-28 11:30:51 +02:00
spec blank package 2015-02-19 08:29:59 +01:00
styles Update ex-mode.less 2015-06-23 18:12:02 +12:00
.gitignore blank package 2015-02-19 08:29:59 +01:00
CHANGELOG.md update changelog for next version 2015-05-24 11:49:49 +02:00
LICENSE.md blank package 2015-02-19 08:29:59 +01:00
package.json Prepare 0.5.1 release 2015-05-24 15:57:13 +02: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