Sha256: d6aff6f62267714a7b4c88f28fdb0138ac9fcff057f0d39324c000050d7531d4

Contents?: true

Size: 1.71 KB

Versions: 1

Compression:

Stored size: 1.71 KB

Contents

Commandline editor written in ruby

Alpha, lets see if this works...

Finished:

 - viewing / scrolling / editing / saving / creating
 - Home/End + Page up/down
 - basic Tab support (tab == 2 space)
 - change-indicator (*)
 - writeable indicator (!)
 - backspace / delete
 - find / go to line
 - delete line
 - configuration via `~/.ruco.rb`

Install
=======
    sudo gem install ruco

Usage
=====
    ruco file.rb

Customize
=========

    # ~/.ruco.rb
    Ruco.configure do
      # bind a key, you can use Integers and Symbols
      # use "ruco --debug-keys foo" to see which keys are possible
      # or have a look at lib/ruco/keyboard.rb
      bind(:"Ctrl+e") do
        ask('delete ?') do |response|
          if response or not response
            editor.move(:to, 0, 0)
            editor.delete(9999)
          end
        end
      end

      # bind an existing action
      puts @actions.keys

      bind(:"Ctrl+x", :quit)
      bind(:"Ctrl+o", :save)
      bind(:"Ctrl+k", :delete_line)

      # define a new action and bind it to multiple keys
      action(:first){ editor.move(:to_column, 0) }
      bind(:"Ctrl+a", :first)
      bind(:home, :first)
    end

TIPS
====
 - Unicode support -> install libncursesw5-dev before installing ruby 1.9 (does not work for 1.8)

TODO
=====
 - support typing unicode like äöß etc (rework size / make strings utf8-aware)
 - smart staying at end of line/column when changing line
 - indentation + paste support
 - warnings / messages
 - syntax highlighting
 - support more key-combos/codes in keyboard.rb
 - search & replace

Author
======
[Michael Grosser](http://grosser.it)  
grosser.michael@gmail.com  
Hereby placed under public domain, do what you want, just do not hold me accountable...

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruco-0.0.14 Readme.md