diff options
| author | nyamatongwe <devnull@localhost> | 2000-04-10 03:29:08 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-04-10 03:29:08 +0000 | 
| commit | dba48e020c0a68a84f4f5f11d5600bba90598da3 (patch) | |
| tree | fb20ac39661cf0f95e9f1f2cf696fd2dcf545d4f /doc | |
| parent | 78a323542a138be07f172742fcebce0eaf203a5d (diff) | |
| download | scintilla-mirror-dba48e020c0a68a84f4f5f11d5600bba90598da3.tar.gz | |
Tab size and indent size can now be different.
Indentation can contain either a mixture of tabs and spaces or only spaces.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index fde329522..6678f3aac 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -408,10 +408,14 @@ SCI_SETBUFFEREDDRAW(bool isbuffered)      </p>  <pre>  SCI_SETTABWIDTH(int widthinchars) +SCI_SETINDENT(int widthinchars) +SCI_SETUSETABS(bool usetabs)  </pre>      <p> -       Sets the size of a tab as a multiple of the size of a space character in the style of the -      first style definition +       SCI_SETTABWIDTH sets the size of a tab as a multiple of the size of a space character in the style of the +      first style definition. SCI_SETINDENT sets the size of indentation in terms of characters.  +      SCI_SETUSETABS determines whether indentation should be created out of a micture of tabs  +      and space or be based purely on spaces.      </p>  <pre>  SCI_SETCODEPAGE(int codepage) | 
