commit
ab857658c7
3 changed files with 11 additions and 6 deletions
|
@ -4,7 +4,7 @@ jobs:
|
|||
docker:
|
||||
- image: circleci/node:10-stretch-browsers
|
||||
environment:
|
||||
- FIREFOX_VERSION: "60.0.2"
|
||||
- FIREFOX_VERSION: "60.0esr"
|
||||
working_directory: ~
|
||||
steps:
|
||||
- restore_cache:
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"manifest_version": 2,
|
||||
"name": "Vim Vixen",
|
||||
"description": "Vim Vixen",
|
||||
"version": "0.16",
|
||||
"version": "0.17",
|
||||
"icons": {
|
||||
"48": "resources/icon_48x48.png",
|
||||
"96": "resources/icon_96x96.png"
|
||||
|
|
|
@ -2,6 +2,11 @@ import CompletionsInteractor from '../usecases/completions';
|
|||
import CommandInteractor from '../usecases/command';
|
||||
import Completions from '../domains/completions';
|
||||
|
||||
const trimStart = (str) => {
|
||||
// NOTE String.trimStart is available on Firefox 61
|
||||
return str.replace(/^\s+/, '');
|
||||
};
|
||||
|
||||
export default class CommandController {
|
||||
constructor() {
|
||||
this.completionsInteractor = new CompletionsInteractor();
|
||||
|
@ -9,13 +14,13 @@ export default class CommandController {
|
|||
}
|
||||
|
||||
getCompletions(line) {
|
||||
let trimmed = line.trimStart();
|
||||
let trimmed = trimStart(line);
|
||||
let words = trimmed.split(/ +/);
|
||||
let name = words[0];
|
||||
if (words.length === 1) {
|
||||
return this.completionsInteractor.queryConsoleCommand(name);
|
||||
}
|
||||
let keywords = trimmed.slice(name.length).trimStart();
|
||||
let keywords = trimStart(trimmed.slice(name.length));
|
||||
switch (words[0]) {
|
||||
case 'o':
|
||||
case 'open':
|
||||
|
@ -45,14 +50,14 @@ export default class CommandController {
|
|||
|
||||
// eslint-disable-next-line complexity
|
||||
exec(line) {
|
||||
let trimmed = line.trimStart();
|
||||
let trimmed = trimStart(line);
|
||||
let words = trimmed.split(/ +/);
|
||||
let name = words[0];
|
||||
if (words[0].length === 0) {
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
let keywords = trimmed.slice(name.length).trimStart();
|
||||
let keywords = trimStart(trimmed.slice(name.length));
|
||||
switch (words[0]) {
|
||||
case 'o':
|
||||
case 'open':
|
||||
|
|
Reference in a new issue