aboutsummaryrefslogtreecommitdiff
path: root/doc/04_WorkingWithFiles.md
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-05-15 17:00:50 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-05-15 17:00:50 -0400
commitd042865f672d6708df80250c9c59172148a55f11 (patch)
treea9c38372853d202d843564ebff9c6eeee60b88fb /doc/04_WorkingWithFiles.md
parente2767cd40f0994ea97cb91fb9e9ceef58b8f3342 (diff)
downloadtextadept-d042865f672d6708df80250c9c59172148a55f11.tar.gz
textadept-d042865f672d6708df80250c9c59172148a55f11.zip
Rewrote theme implementation.
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua.
Diffstat (limited to 'doc/04_WorkingWithFiles.md')
-rw-r--r--doc/04_WorkingWithFiles.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/04_WorkingWithFiles.md b/doc/04_WorkingWithFiles.md
index 373b7851..ff8ce0fa 100644
--- a/doc/04_WorkingWithFiles.md
+++ b/doc/04_WorkingWithFiles.md
@@ -36,8 +36,8 @@ settings in the buffer status statusbar.
#### Indentation
-Indentation is usually set by a [language-specific module][] or the current
-[theme][]. By default, indentation is 2 spaces. You can toggle between using
+Indentation is usually set by a [language-specific module][] or by the user's
+[settings][]. By default, indentation is 2 spaces. You can toggle between using
tabs and spaces manually by pressing `Ctrl+Alt+Shift+T` (`^⇧T` on Mac OSX |
`M-T` or `M-S-T` in curses). Toggling between tabs and spaces only affects
future indentation; it does not convert existing indentation. `Ctrl+Alt+I` (`^I`
@@ -47,7 +47,7 @@ are converted to spaces.) Similarly, you can set indentation size manually using
the "Buffer -> Indentation" menu.
[language-specific module]: 07_Modules.html#Buffer.Properties
-[theme]: 09_Themes.html#Buffer
+[settings]: 08_Preferences.html#Buffer.Settings
#### Line Endings