diff options
author | 2013-05-29 21:45:17 -0400 | |
---|---|---|
committer | 2013-05-29 21:45:17 -0400 | |
commit | 0592c2182f18d0a36d8903324785cb6a449bcd3b (patch) | |
tree | ce4018ddc0ac6108d448cc89f11cf6cfeff191a0 /doc/14_Appendix.md | |
parent | c28f8dcab0d96444107b7e9e0de65abb21cd0972 (diff) | |
download | textadept-0592c2182f18d0a36d8903324785cb6a449bcd3b.tar.gz textadept-0592c2182f18d0a36d8903324785cb6a449bcd3b.zip |
Added more theme change documentation to migration guide; doc/14_Appendix.md
Diffstat (limited to 'doc/14_Appendix.md')
-rw-r--r-- | doc/14_Appendix.md | 17 |
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 |