~ubuntu-branches/ubuntu/raring/wxwidgets2.8/raring

« back to all changes in this revision

Viewing changes to wxPython/wx/tools/Editra/src/syntax/README

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2012-01-07 13:59:25 UTC
  • mfrom: (1.1.9) (5.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20120107135925-2601miy9ullcon9j
Tags: 2.8.12.1-6ubuntu1
* Resync from Debian, changes that were kept:
  - debian/rules: re-enable mediactrl. This allows libwx_gtk2u_media-2.8 to be
    built, as this is required by some applications (LP: #632984)
  - debian/control: Build-dep on libxt-dev for mediactrl.
  - Patches
    + fix-bashism-in-example
* Add conflict on python-wxgtk2.8 (<< 2.8.12.1-6ubuntu1~) to python-wxversion
  to guarantee upgrade ordering when moving from pycentral to dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
        PARAM: current_pos The current position of the caret in the buffer
91
91
        PARAM: indent_char Prefered character to use for indentation 
92
92
               ("\t" or " " * tabwidth)
93
 
        RETURN: Text to insert at current_pos
94
93
        SPECIFICATIONS: Called when the Return key is hit. Note that the new
95
94
                        line character is not sent to the buffer so it needs
96
 
                        to be handled by this method. For any new line lines
97
 
                        that need to be inserted use a '\n' character. The
98
 
                        buffer will handle any necessary conversions on
99
 
                        platforms that use other characters or for preferences
100
 
                        set at the user level.
 
95
                        to be handled by this method. This method must also
 
96
                        call AddText to add the new whitespace to the buffer.
101
97
 
102
98
                        Register with the synglob.FEATURE_AUTOINDENT id
103
99