Git Product home page Git Product logo

vim-ruby_eval's Introduction

What is this

Evaluate selected text as ruby code then print or insert.

I love Ruby, one of the goodness of ruby is it has many way to express Array , String , etc.. When I write other Language such as Python or JavaScript and want to prepare array [ "a", "b", "c", "d" ]. You can write %w(a b c d) then select text , then execute :RubyEvalInsert to insert [ "a", "b", "c", "d" ] to buffer.

Requirement

gem install awesome_print

Example keymap

vnoremap <silent> <Space>p :<C-u>RubyEvalPrint<CR>
vnoremap <silent> <Space>i :<C-u>RubyEvalInsert<CR>

nnoremap <silent> <Space>p :<C-u>RubyEvalPrint<CR>
nnoremap <silent> <Space>i :<C-u>RubyEvalInsert<CR>

Usage Example

In following what I want you to try is.. set cursor position to ruby fragment, then execute :RubyEvalInsert

insert 10 size array for random number from 1 to 6 to buffer

10.times.map {|n| rand(6) + 1}

insert array for "A" to "Z"

("A".."Z").to_a.join()

to insert {"port"=>"80", "ip"=>"192.168.1.1"} to buffer with minimal key stroke

Hash[*%w(port 80 ip 192.168.1.1)]

vim-ruby_eval's People

Contributors

t9md avatar

Stargazers

 avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.