Editing Gedit

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 7: Line 7:


== Code comment ==
== Code comment ==
One of the most useful plugins is '''code comment''' which allows to comment/uncomment several lines of code at the same. Simply select the lines and press {{Key|Ctr+M}} to comment and {{Key|Shift+Ctr+M}} to uncomment. There's one limitation though. While the syntax correctly recognizes both {{Codeline|%}} and {{Codeline|#}} as comment characters, the plugin must use only one. By default it uses {{Codeline|#}}. If you want to change it to {{Codeline|%}}, edit the file with the syntax highlight rule and in the metadata field change the value of {{Codeline|line-comment-start}}:
One of the most useful plugins is '''code comment''' which allows to comment/uncomment several lines of code at the same. Simply select the lines and press '''Ctr+M''' to comment and '''Shift+Ctr+M''' to uncomment. There's one limitation though. While the syntax correctly recognizes both <code>%</code> and <code>#</code> as comment characters, the plugin must use only one. By default it uses <code>#</code>. If you want to change it to <code>%</code>, edit the file with the syntax highlight rule and in the metadata field change the value of ''line-comment-start'':


  <property name="line-comment-start">#</property>
  <property name="line-comment-start">#</property>
Line 27: Line 27:
  >        bottom.remove_item(self._panel)
  >        bottom.remove_item(self._panel)


Basically replace {{Codeline|window.get_bottom_panel()}} with {{Codeline|window.get_side_panel()}}. You might want to replace the {{Codeline|side}} variable name to {{Codeline|bottom}} but that is not actually necessary, it's only so that the variables name reflect the truth about them. The same hack can be used on other plugins to move them between the panels.
Basically replace '''window.get_bottom_panel()''' with '''window.get_side_panel()'''. You might want to replace the '''side''' varname to '''bottom''' but that is not actually necessary. The same hack can be used on other plugins to move them between the panels.


== File Browser on side panel ==
== File Browser on side panel ==
Please note that all contributions to Octave may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Octave:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)

Templates used on this page: