aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-05-29 21:45:17 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-05-29 21:45:17 -0400
commit0592c2182f18d0a36d8903324785cb6a449bcd3b (patch)
treece4018ddc0ac6108d448cc89f11cf6cfeff191a0
parentc28f8dcab0d96444107b7e9e0de65abb21cd0972 (diff)
downloadtextadept-0592c2182f18d0a36d8903324785cb6a449bcd3b.tar.gz
textadept-0592c2182f18d0a36d8903324785cb6a449bcd3b.zip
Added more theme change documentation to migration guide; doc/14_Appendix.md
-rw-r--r--doc/14_Appendix.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/14_Appendix.md b/doc/14_Appendix.md
index 7be3e490..2cdb86b8 100644
--- a/doc/14_Appendix.md
+++ b/doc/14_Appendix.md
@@ -258,9 +258,26 @@ Notes:
a separate *view.lua*. You may use color properties defined earlier. Try to
refrain from setting properties like `buffer.sel_eol_filled` which belong in
a [*properties.lua*][] file.
+6. The separate *buffer.lua* is gone. Use [*properties.lua*][] or a
+ [language-specific module][].
[customizing themes]: 09_Themes.html#Customizing.Themes
[*properties.lua*]: 08_Preferences.html#Buffer.Properties
+[language-specific module]: 07_Modules.html#Buffer.Properties
+
+##### Theme Preference
+
+Textadept 7 ignores the *~/.textadept/theme* and *~/.textadept/theme_term* files
+that specified your preferred Textadept 6 theme. Use *~/.textadept/init.lua* to
+[set a preferred theme][] instead. For example, if you had custom GUI and
+terminal themes:
+
+ -- File *~/.textadept/init.lua*
+ gui.set_theme(not CURSES and 'custom' or 'custom_term')
+
+You may still use absolute paths for themes instead of names.
+
+[set a preferred theme]: 09_Themes.html#Switch.Themes
### Textadept 5 to 6