aboutsummaryrefslogtreecommitdiff
path: root/src/shared
Commit message (Collapse)AuthorAgeFilesLines
* Resize console dynamicallyShin'ya Ueoka2021-03-141-1/+10
|
* Import as an asteriskShin'ya UEOKA2021-01-021-1/+1
|
* Use destructuring-assignment instead of delete operatorShin'ya Ueoka2020-09-221-3/+2
| | | | | | | | | | Operands for delete must be optional on TypeScript 4.0. When using the delete operator in strictNullChecks, the operand must now be any, unknown, never, or be optional (in that it contains undefined in the type). Otherwise, use of the delete operator is an error. https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-0.html#operands-for-delete-must-be-optional
* Enable @typescript-eslint/no-extra-non-null-assertionShin'ya Ueoka2020-08-111-1/+1
|
* Enable @typescript-eslint/no-namespaceShin'ya Ueoka2020-08-111-29/+0
|
* Allow to change color scheme by "colorscheme" propertyShin'ya Ueoka2020-05-042-5/+8
|
* Fix message typeShin'ya Ueoka2020-05-041-1/+1
|
* Remove unused description in background scriptShin'ya Ueoka2020-05-041-5/+0
|
* Add colorscheme propertyShin'ya Ueoka2020-05-044-2/+74
|
* Use plugin:prettier/recommendedShin'ya Ueoka2020-04-1314-620/+625
|
* Clean unused codeShin'ya Ueoka2020-03-291-8/+0
|
* Complete properties on set commandShin'ya Ueoka2020-03-291-1/+12
|
* Complete tabs by the completion packagesShin'ya Ueoka2020-03-282-0/+24
|
* Query completions on open command by a completion sourceShin'ya Ueoka2020-03-262-1/+52
|
* Complete commands on the console scriptShin'ya Ueoka2020-03-251-0/+29
|
* Revert "Remove ! from commands"Shin'ya Ueoka2020-03-251-0/+2
| | | | This reverts commit f7479c36ad0883455e511a86adf86e147ff4460a.
* Remove ! from commandsShin'ya Ueoka2020-03-251-2/+0
|
* Add command-line parser on console scriptsShin'ya Ueoka2020-03-251-0/+15
|
* Treats digit keys with modifiersShin'ya Ueoka2020-02-091-1/+1
|
* Enable addon on blacklisted sitesShin'ya Ueoka2019-12-221-4/+1
|
* npm run lint:fixShin'ya Ueoka2019-12-229-48/+48
|
* Rename count to repeatShin'ya Ueoka2019-12-211-1/+1
|
* Add numeric prefix to repeat a commandShin'ya Ueoka2019-12-212-0/+27
|
* Add prefix functions in KeySequenceShin'ya Ueoka2019-12-131-69/+0
|
* Identify the key is a digitShin'ya Ueoka2019-12-062-5/+32
|
* Make engines requiredShin'ya Ueoka2019-12-033-4/+15
|
* Validate on top-level settings and use pre-compiled ajvShin'ya Ueoka2019-12-038-435/+377
|
* Add settings schema and compile scriptShin'ya Ueoka2019-12-032-0/+619
|
* Validate json settings with ajvShin'ya Ueoka2019-12-035-108/+112
|
* Fix for eslintShin'ya UEOKA2019-12-011-1/+1
|
* handle localhost urls with pathchenchao2019-11-071-2/+17
|
* more localhost use caseschenchao2019-11-061-2/+12
|
* support url started with localhostchenchao2019-11-051-1/+1
|
* Add partial blacklist formShin'ya UEOKA2019-10-082-9/+17
|
* Add partial blacklist itemShin'ya UEOKA2019-10-071-19/+97
|
* Rename valueOf to fromJSONShin'ya UEOKA2019-10-071-12/+12
|
* Use string settings on default settingsShin'ya UEOKA2019-10-072-164/+85
|
* Move Key to settingsShin'ya UEOKA2019-10-072-0/+115
|
* Fix form optionsShin'ya UEOKA2019-10-072-6/+6
|
* Make Settings classShin'ya UEOKA2019-10-062-50/+77
|
* Make Blacklist classShin'ya UEOKA2019-10-065-41/+51
|
* Make Properties classShin'ya UEOKA2019-10-065-145/+123
|
* Make Search classShin'ya UEOKA2019-10-064-53/+93
|
* Make Keymap classShin'ya UEOKA2019-10-063-37/+80
|
* Fix type checkingsShin'ya UEOKA2019-08-292-8/+7
|
* Fix undefined checking on operation parameterShin'ya Ueoka2019-08-281-11/+15
|
* tabs.close: rename selectLeft (boolean) -> select ("left" | "right")chocolateboy2019-07-313-5/+18
| | | | | | | | | | | | | | | | before: { "type": "tabs.close", "selectLeft": true | false // (default: false) } after: { "type": "tabs.close", "select": "left" | "right" // (default: "right") }
* tabs.close.right: rename `gd` -> `x$`chocolateboy2019-07-312-2/+2
|
* Add an option to close the current tab and select the tab to the leftchocolateboy2019-07-283-8/+16
| | | | | | | | | | | | | | Add an option to tabs.close to close the current tab and select the tab to the left. Bound to `D` by default, which replaces the tabs.close.right command, which is rarely-used. [1] The old `D` behavior has been moved to `gd`. + update the README and fix some lint errors [1] https://tinyurl.com/y4mj7hjy
* Fix settings parsingShin'ya Ueoka2019-05-261-11/+17
|