in reply to Re:x3 Comments in my code (gvim syntax highlighting example)
in thread Comments in my code
#!/usr/bin/perl -w use strict; use constant FOO => 'bar'; my @array = qw(one two three); my $scalar = 'when in Rome'; # some comments print "i like Rome\n" if $scalar =~ /Rome/; print "no digits\n" if $scalar !~ /\d+/; sub foo { return 'foo'; } |
Cheers, and thanks for the links!hi Normal guifg=#35351d guibg=#fffff3 hi PreProc guifg=#de022a guibg=#fffff3 hi Statement guifg=#8d6b5f guibg=#fffff3 hi Comment guifg=#777777 guibg=#fffff3 hi Identifier guifg=#2c2255 guibg=#fffff3 hi Constant guifg=#0f6d30 guibg=#fffff3 hi Special guifg=#de022a guibg=#fffff3 hi Cursor guifg=#de022a guibg=#c13a30
jeffa
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re:x5 Comments in my code (gvim syntax highlighting example)
by grinder (Bishop) on Nov 24, 2001 at 23:40 UTC |