Skip to content

Commit

Permalink
Fix processing of input keys before matching with possible remaps
Browse files Browse the repository at this point in the history
  • Loading branch information
xmbhasin committed Jul 31, 2018
1 parent f3e4311 commit a96b606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configuration/remapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ export class Remapper implements IRemapper {
let remapping: IKeyRemapping | undefined;
// let range = Remapper._getRemappedKeysLengthRange(userDefinedRemappings);

const keysString = inputtedKeys.join(' ');
const keysString = inputtedKeys.join('');

const mostRecentMatchingKeysIndex = Object.keys(userDefinedRemappings).reduce(
(acc, remappingKey) => {
Expand Down

0 comments on commit a96b606

Please sign in to comment.