aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/._M.luadoc
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2020-08-17 17:56:52 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2020-08-17 17:56:52 -0400
commitb3cbff3e4e80aac25f922d7fec4e198c6dde95b3 (patch)
tree603046d1d885a29b1fd3cba1c8a47eca220710e2 /core/._M.luadoc
parentf7855153d938c99d506ad363e889031e1e9420a3 (diff)
Updated some documentation and use macOS instead of Mac OSX.
Diffstat (limited to 'core/._M.luadoc')
-rw-r--r--core/._M.luadoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/._M.luadoc b/core/._M.luadoc
index e9d4bf18..afbe5779 100644
--- a/core/._M.luadoc
+++ b/core/._M.luadoc
@@ -42,7 +42,7 @@
-- files. However, it does not know all of them, and the ones that it does know
-- may not be completely accurate in all cases. Compile and run commands are
-- read from the [`textadept.run.compile_commands`]() and
--- [`textadept.run.run_commands`]() tables using the appropriate lexer name key,
+-- [`textadept.run.run_commands`]() tables using the appropriate lexer name key,
-- and thus can be defined or modified. For Lua, it would look like:
--
-- textadept.run.compile_commands.lua = 'luac "%f"'
@@ -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 Mac OSX | `S-Enter` in curses) key for easy access:
+-- on macOS | `S-Enter` in curses) key for easy access:
--
-- keys.cpp = {
-- ['s\n'] = function()
@@ -108,7 +108,7 @@
-- }
--
-- When defining key bindings for other commands, you may make use of a `Ctrl+L`
--- (`⌘L` on Mac OSX | `M-L` in curses) keychain. Traditionally this prefix has
+-- (`⌘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.