aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2011-02-26 12:09:32 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2011-02-26 12:09:32 -0500
commitade0a0f1ff13bdccb6f0cad13449b2b13eaff70f (patch)
treed05313ebb287dc376df6f0ecdbd1ec0487c4fd06 /doc
parenta1b06d0c6a1a1da1021d9310f67b2d4b9eb13687 (diff)
Updated manual.
Diffstat (limited to 'doc')
-rw-r--r--doc/manual/6_AdeptEditing.md7
-rw-r--r--doc/manual/8_Themes.md10
2 files changed, 12 insertions, 5 deletions
diff --git a/doc/manual/6_AdeptEditing.md b/doc/manual/6_AdeptEditing.md
index 911caccc..5436d704 100644
--- a/doc/manual/6_AdeptEditing.md
+++ b/doc/manual/6_AdeptEditing.md
@@ -29,7 +29,8 @@ suggestion. Press `Return` to complete the selected word.
Textadept has the capability to autocomplete symbols for programming languages
and display API documentation. Lua is of course supported extremely well and
C/C++ has basic support with the help of [ctags](http://ctags.sf.net). Symbol
-completion is available by pressing `Ctrl+I` (`~` on Mac OSX).
+completion is available by pressing `Ctrl+I` (`~` on Mac OSX). Documentation for
+symbols is available with `Ctrl+H`.
![Adeptsense Lua](images/adeptsense_lua.png)
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -147,8 +148,8 @@ If no text is selected, the word to the left of the caret is enclosed.
## Word Highlight
All occurrences of a given word are highlighted by putting the caret over the
-word and pressing `Ctrl+H` (`Ctrl+Apple+T` on Mac OSX). This is useful to show
-occurrences of a variable name in source code.
+word and pressing `Ctrl+Shift+H` (`Ctrl+Apple+T` on Mac OSX). This is useful to
+show occurrences of a variable name in source code.
![Word Highlight](images/wordhighlight.png)
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