Changes between Version 37 and Version 38 of coding_rules


Ignore:
Timestamp:
06/11/21 14:36:50 (4 years ago)
Author:
jdquinn
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • coding_rules

    v37 v38  
    8989}}}
    9090
     91=== Vim Folding ===
     92Classes, functions, and other logical blocks of code should be folded (note the exact formatting used below):
     93{{{
     94function foo() % {{{
     95[...]
     96end % }}}
     97}}}
     98
     99
    91100== Python ==
    92101
     
    127136As with MATLAB, at the very least, the first line and the 'Usage' should be provided. Unlike MATLAB, use indentations of 4 and 8 spaces.
    128137
     138=== Vim Folding ===
     139Classes, functions, and other logical blocks of code should be folded (note the exact formatting used below):
     140{{{
     141def foo():  # {{{
     142[...]
     143# }}}
     144}}}
     145
    129146=== MATLAB Built-In Equivalents ===
    130147The following is a list of MATLAB built-in equivalents in Python: