diff options
author | 2020-08-18 21:47:51 -0400 | |
---|---|---|
committer | 2020-08-18 21:47:51 -0400 | |
commit | f81c76a292d5435a67df640fe971f426d5a3558e (patch) | |
tree | 91bae94bc4cceccd559c3556246b703f74fc5fab /core/keys.lua | |
parent | 459b16e6f0092b5629ab9896cb673eef303bf71e (diff) | |
download | textadept-f81c76a292d5435a67df640fe971f426d5a3558e.tar.gz textadept-f81c76a292d5435a67df640fe971f426d5a3558e.zip |
Use "terminal version" instead of "curses" for more consistency.
Diffstat (limited to 'core/keys.lua')
-rw-r--r-- | core/keys.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/keys.lua b/core/keys.lua index 16c2053e..ecf98eaa 100644 --- a/core/keys.lua +++ b/core/keys.lua @@ -28,9 +28,9 @@ local M = {} -- -- Key sequences are strings built from an ordered combination of modifier keys -- and the key's inserted character. Modifier keys are "Control", "Shift", and --- "Alt" on Windows, Linux, BSD, and in curses. On macOS they are "Control" --- (`^`), "Alt/Option" (`⌥`), "Command" (`⌘`), and "Shift" (`⇧`). These --- modifiers have the following string representations: +-- "Alt" on Windows, Linux, BSD, and in the terminal version. On macOS they are +-- "Control" (`^`), "Alt/Option" (`⌥`), "Command" (`⌘`), and "Shift" (`⇧`). +-- These modifiers have the following string representations: -- -- Modifier | Linux / Win32 | macOS | Terminal | -- ---------|---------------|-----------|-----------| |