ex-mode
ex-mode copied to clipboard
Redo
here's the code for :redo - not sure where it should go as a p.r.
atom.packages.onDidActivatePackage (pack) ->
if pack.name == 'ex-mode'
Ex = pack.mainModule.provideEx()
Ex.registerCommand 'redo', ->
atom.workspace.observeTextEditors (editor) ->
editor.redo()
Let me know where it should go and I'll make the P.R.
Thanks for this :smile:
Commands are in lib/ex.coffee, you can just add a function called redo.
@ivanoats There was an idea in #142 to create a folder in the repo for user contributed scripts - that could find its way into the package. Please open an MR. :)