Ex mode for Atom
Find a file
Polo d0cbbb5d15 Make cmd-line in ex-mode look like in vim-mode
Changed the style of .command-mode-input so that it looks like
.normal-mode-input from vim-mode.
This makes ex-mode more consistent with vim-mode
2015-08-01 15:37:02 +02:00
keymaps working title 2015-02-19 18:11:25 +01:00
lib Add specs; minor changes to some commands 2015-07-29 19:13:13 +02:00
spec Add specs; minor changes to some commands 2015-07-29 19:13:13 +02:00
styles Make cmd-line in ex-mode look like in vim-mode 2015-08-01 15:37:02 +02:00
.gitignore blank package 2015-02-19 08:29:59 +01:00
.travis.yml travis: install vim-mode 2015-07-30 08:55:14 +02:00
CHANGELOG.md update changelog 2015-07-28 11:56:45 +02:00
LICENSE.md blank package 2015-02-19 08:29:59 +01:00
package.json Add specs; minor changes to some commands 2015-07-29 19:13: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