aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/keys.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2019-09-23 12:53:29 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2019-09-23 12:53:29 -0400
commit1b774a49521eff00bab0cc611f0f54b3b7f4d23b (patch)
tree3aec8b245d62744f2b8da941966a9bc8bfb321c7 /modules/textadept/keys.lua
parent8d691eedfb6c62c231fc95d1be786de6cc945cb7 (diff)
downloadtextadept-1b774a49521eff00bab0cc611f0f54b3b7f4d23b.tar.gz
textadept-1b774a49521eff00bab0cc611f0f54b3b7f4d23b.zip
Replaced `textadept.macros.*_recording()` with `textadept.macros.record()`.
Also updated keybindings.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r--modules/textadept/keys.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index e2968ab6..d3cc7350 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -398,9 +398,8 @@ keys.f2 = m_bookmark[_L['_Next Bookmark']][2]
keys[GUI and 'sf2' or 'f3'] = m_bookmark[_L['_Previous Bookmark']][2]
keys[GUI and 'af2' or 'f4'] = textadept.bookmarks.goto_mark
-- Macros.
-keys.f9 = textadept.macros.start_recording
-keys[GUI and 'sf9' or 'f10'] = textadept.macros.stop_recording
-keys[GUI and 'af9' or 'f12'] = textadept.macros.play
+keys.f9 = textadept.macros.record
+keys[GUI and 'sf9' or 'f10'] = textadept.macros.play
-- Quick Open.
local m_quick_open = m_tools[_L['Quick _Open']]
keys[not OSX and 'cu' or 'mu'] = m_quick_open[_L['Quickly Open _User Home']][2]