Is there a way to comment out a chunk of highlighted code?
I am programming in ruby, and I hate putting # on lines individually.
|
Is there a way to comment out a chunk of highlighted code? I am programming in ruby, and I hate putting # on lines individually. |
|||
|
|
1.Install gedit plugins
2.Go to Edit->Preference->Plugins-> and enable Code Comment 3.Ctl+m to comment block of codes 4.Ctl+Shift+m to uncomment block of codes |
|||||
|
|
Ruby has block commenting...
This will avoid the need to add # to each line... However, I don't think Gedit will convert highlighted code into commented lines by default. |
|||
|
|
|
Just use a multi-line comment. Example:
|
|||
|
|
|
Looks like Code Comment plugin would do it? http://live.gnome.org/GeditPlugins |
|||
|
|
|
You should try gmate! It is a package of cool plugins for Ruby (and not only Ruby) developement under gedit. You can comment and uncomment bunch of lines like in Sublime or TextMate |
||||
|
|