ex-mode icon indicating copy to clipboard operation
ex-mode copied to clipboard

Redo

Open ivanoats opened this issue 8 years ago • 2 comments

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.

ivanoats avatar Mar 30 '16 17:03 ivanoats

Thanks for this :smile:

Commands are in lib/ex.coffee, you can just add a function called redo.

jazzpi avatar Mar 30 '16 19:03 jazzpi

@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. :)

hultberg avatar Jul 29 '17 10:07 hultberg