diff options
author | 2011-02-26 12:09:32 -0500 | |
---|---|---|
committer | 2011-02-26 12:09:32 -0500 | |
commit | ade0a0f1ff13bdccb6f0cad13449b2b13eaff70f (patch) | |
tree | d05313ebb287dc376df6f0ecdbd1ec0487c4fd06 /doc/manual/8_Themes.md | |
parent | a1b06d0c6a1a1da1021d9310f67b2d4b9eb13687 (diff) | |
download | textadept-ade0a0f1ff13bdccb6f0cad13449b2b13eaff70f.tar.gz textadept-ade0a0f1ff13bdccb6f0cad13449b2b13eaff70f.zip |
Updated manual.
Diffstat (limited to 'doc/manual/8_Themes.md')
-rw-r--r-- | doc/manual/8_Themes.md | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/manual/8_Themes.md b/doc/manual/8_Themes.md index c022bf7f..64a1624d 100644 --- a/doc/manual/8_Themes.md +++ b/doc/manual/8_Themes.md @@ -41,8 +41,14 @@ and colors. #### Buffer `buffer.lua` contains buffer-specific properties like indentation size and -whether or not to use tabs. See the [LuaDoc](../modules/buffer.html) for -documentation on the properties. +whether or not to use tabs. For example, to set the default tab size to 4 and +use tabs: + + buffer.tab_width = 4 + buffer.use_tabs = true + buffer.indent = 4 + +See the [LuaDoc](../modules/buffer.html) for documentation on the properties. #### View |