On Mon, Nov 28, 2011 at 9:03 PM, Gour gour@atmarama.net wrote:
Hello!
I'm evaluating Geany to replace present modest usage of (G)Vim for our upcoming D project and some PHP (possibly some Python) coding.
Yesterday I saw a video aboout new version of Bluefish and its context-sensitive (un)commenting and see that Geany is lacking here...
Let's say we have simple *.html file with the following snippet:
{{extend 'layout.html'}}
<script><!-- jQuery(document).ready(function(){ jQuery("table.sortable tbody tr").mouseover( function() { jQuery(this).addClass("highlight"); }).mouseout( function() { jQuery(this).removeClass("highlight"); }); jQuery('table.sortable tbody tr:odd').addClass('odd'); jQuery('table.sortable tbody tr:even').addClass('even'); }); //--></script>
(it's simple view from web2py project)
If I select part of the
jQuery(document).ready(function(){
line and select format --> comment, I get:
<!-- jQuery(document).ready(function(){ -->
For me it correctly gives the javascript // comment, what filetype is Geany using (see in the status bar)?
Cheers Lex