An open API service indexing awesome lists of open source software.

https://github.com/tijn/ruby-block-style-toggle

Ruby block-style toggle
https://github.com/tijn/ruby-block-style-toggle

Last synced: 11 months ago
JSON representation

Ruby block-style toggle

Awesome Lists containing this project

README

          

A command plugin that enables to toggle Ruby blocks between braces and `do end`.

It works for [Crystal](https://crystal-lang.org/) too.

Example:
--------

```ruby
foo { |bar| puts bar }
```

<=>

```ruby
foo do |bar|
puts bar
end
```

License
-------

All of Ruby Block Converter for Sublime Text is licensed under the MIT license.