Show
Ignore:
Timestamp:
03/13/08 22:04:55 (8 months ago)
Author:
rob
Message:

Added CStyleAutoindent
* forces an unindent when it sees a line starting with the } character

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/peppy/plugins/cpp_mode.py

    r1166 r1168  
    1212 
    1313from peppy.lib.foldexplorer import * 
    14 from peppy.lib.autoindent import FoldingAutoindent 
     14from peppy.lib.autoindent import CStyleAutoindent 
    1515from peppy.yapsy.plugins import * 
    1616from peppy.major import * 
     
    2929       ) 
    3030     
    31     autoindent = FoldingAutoindent() 
     31    autoindent = CStyleAutoindent() 
    3232 
    3333