Changes between Version 16 and Version 17 of PadrePluginFix
- Timestamp:
- 03/22/12 13:28:26 (14 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PadrePluginFix
v16 v17 10 10 11 11 * Over selection text range, provide the ability to quote it and choose qq{} or q{} 12 * Negate if block form with unless and vice versa 13 14 Should become 15 16 || 17 {{{#!perl 18 if(defined $fh) { 19 say "File is open"; 20 } else { 21 say "File is not open!"; 22 } 23 }}} 24 | 25 {{{#!perl 26 unless(defined $fh) { 27 say "File is not open!"; 28 } else { 29 say "File is open"; 30 } 31 }}} 32 || 33 34 ||{{{a b}}}|b|| 35 12 36 * Transform if single statement into postfix form and vice versa: 13 37
