diff options
author | 2011-08-30 20:58:06 -0400 | |
---|---|---|
committer | 2011-08-30 20:58:06 -0400 | |
commit | 94a410830cc0c93323dcb69a63a57e3c5d963d3b (patch) | |
tree | d7105bd586e07ca106e6d0c0e9ff12641c0fc0e4 /doc/manual/9_Preferences.md | |
parent | be8a54727383036e65ff3459f9b9ea7f733ec5bf (diff) | |
download | textadept-94a410830cc0c93323dcb69a63a57e3c5d963d3b.tar.gz textadept-94a410830cc0c93323dcb69a63a57e3c5d963d3b.zip |
Updated manual.
Diffstat (limited to 'doc/manual/9_Preferences.md')
-rw-r--r-- | doc/manual/9_Preferences.md | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/manual/9_Preferences.md b/doc/manual/9_Preferences.md index 3a19e55b..e12b0c72 100644 --- a/doc/manual/9_Preferences.md +++ b/doc/manual/9_Preferences.md @@ -79,10 +79,9 @@ It is not recommended to edit Textadept's `modules/textadept/keys.lua` for changing the key bindings since your changes could be overwritten when updating Textadept. Instead, modify `keys` from within your `~/.textadept/init.lua` or from a file loaded by `~/.textadept/init.lua`. For example maybe you want -`Ctrl+Shift+N` (`⌘⇧N` on Mac OSX) to create a new buffer instead of `Ctrl+N` -(`⌘N`): +`Ctrl+Shift+C` to create a new buffer instead of `Ctrl+N`: - keys.cN = new_buffer + keys.cC = new_buffer keys.cn = nil ## Locale @@ -90,10 +89,10 @@ from a file loaded by `~/.textadept/init.lua`. For example maybe you want Most messages displayed by Textadept are localized. `core/locale.conf` contains these messages. By default, Textadept is localized in English. To use a different language, put a translated version of `core/locale.conf` in your -`~/.textadept/` folder. +`~/.textadept/` folder. Translations are located in `core/locales/`. Feel free to translate Textadept and send your modified `locale.conf` files -to me. I will make them available to other users. +to me. I will include them in future releases. ## Mime Types |