diff options
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r-- | modules/textadept/keys.lua | 5 |
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] |