diff --git a/Scripts/install-reaper-keys.lua b/Scripts/install-reaper-keys.lua index 0500c6bb..a6fb4d76 100644 --- a/Scripts/install-reaper-keys.lua +++ b/Scripts/install-reaper-keys.lua @@ -1,5 +1,5 @@ -- @description reaper-keys: map keystroke combinations to actions like in vim --- @version 2.0.0-a5 +-- @version 2.0.0-a6 -- @author gwatcha -- @links -- GitHub repository https://github.com/gwatcha/reaper-keys diff --git a/internal/state_machine/state_machine.lua b/internal/state_machine/state_machine.lua index 54cc262c..9f271b70 100644 --- a/internal/state_machine/state_machine.lua +++ b/internal/state_machine/state_machine.lua @@ -4,7 +4,7 @@ local handleCommand = require('command.handler') local getPossibleFutureEntries = require('command.completer') local config = require 'definitions.config'.general local actions = require 'definitions.actions' -local log = require'utils.log' +local log = require 'utils.log' local format = require('utils.format') local feedback = require('gui.feedback.controller') @@ -45,8 +45,7 @@ local function step(state, key_press) return new_state end - local new_keys = new_state.key_sequence - log.info("New key sequence: ", new_keys) + log.info("New key sequence: ", new_state.key_sequence) local command = buildCommand(new_state) if command then log.trace("Command built: ", format.block(command))