diff options
author | 2020-08-18 21:47:51 -0400 | |
---|---|---|
committer | 2020-08-18 21:47:51 -0400 | |
commit | f81c76a292d5435a67df640fe971f426d5a3558e (patch) | |
tree | 91bae94bc4cceccd559c3556246b703f74fc5fab /core/._M.luadoc | |
parent | 459b16e6f0092b5629ab9896cb673eef303bf71e (diff) | |
download | textadept-f81c76a292d5435a67df640fe971f426d5a3558e.tar.gz textadept-f81c76a292d5435a67df640fe971f426d5a3558e.zip |
Use "terminal version" instead of "curses" for more consistency.
Diffstat (limited to 'core/._M.luadoc')
-rw-r--r-- | core/._M.luadoc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/._M.luadoc b/core/._M.luadoc index afbe5779..d637da3c 100644 --- a/core/._M.luadoc +++ b/core/._M.luadoc @@ -97,7 +97,7 @@ -- Additional editing features for the language can be useful. For example, a -- C++ module might have a feature to add a ';' to the end of the current line -- and insert a new line. This command could be bound to the `Shift+Enter` (`⇧↩` --- on macOS | `S-Enter` in curses) key for easy access: +-- on macOS | `S-Enter` in the terminal version) key for easy access: -- -- keys.cpp = { -- ['s\n'] = function() @@ -108,11 +108,11 @@ -- } -- -- When defining key bindings for other commands, you may make use of a `Ctrl+L` --- (`⌘L` on macOS | `M-L` in curses) keychain. Traditionally this prefix has --- been reserved for use by language modules (although neither Textadept nor its --- modules utilize it at the moment). Users may define this keychain for new or --- existing modules and it will not conflict with any default key bindings. --- For example: +-- (`⌘L` on macOS | `M-L` in the terminal version) keychain. Traditionally this +-- prefix has been reserved for use by language modules (although neither +-- Textadept nor its modules utilize it at the moment). Users may define this +-- keychain for new or existing modules and it will not conflict with any +-- default key bindings. For example: -- -- keys.lua[CURSES and 'meta+l' or OSX and 'cmd+l' or 'ctrl+l'] = { -- ... |