Sha256: ffe81176a9e95a589e8a92eb0143598f2c112b089d20fd6c283246ae2aeb0907
Contents?: true
Size: 1.84 KB
Versions: 3
Compression:
Stored size: 1.84 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` - keeps indentation - paste from clipboard (default: Ctrl+v) 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 ==== - [Ruby1.9] Unicode support -> install libncursesw5-dev before installing ruby (does not work for 1.8) TODO ===== - selecting -> delete / overwrite / copy / cut - smart staying at end of line/column when changing line - warnings / messages - syntax highlighting - support more key-combos/codes in keyboard.rb - raise when binding to a unsupported key - search & replace - 1.8: unicode support <-> already finished but usable due to Curses (see encoding branch) 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruco-0.0.18 | Readme.md |
ruco-0.0.17 | Readme.md |
ruco-0.0.16 | Readme.md |