diff --git a/.gitignore b/.gitignore index c7247a2..30a52a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ **/node_modules/ +package-lock.json release/ release.zip .log/ diff --git a/content_scripts/keys.js b/content_scripts/keys.js index e5de8e0..3c4df11 100644 --- a/content_scripts/keys.js +++ b/content_scripts/keys.js @@ -760,6 +760,12 @@ var KeyHandler = { Mappings.actions.previousCompletionResult(); } return; + case '': + if (Command.type === 'action' && settings.cncpcompletion) { + event.preventDefault(); + Mappings.actions.nextCompletionResult(); + } + return; case '': // Command history navigation/search case '': event.preventDefault();