aboutsummaryrefslogtreecommitdiff
path: root/src/shared/SettingData.ts
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Use plugin:prettier/recommendedShin'ya Ueoka2020-04-131-78/+77
|
* npm run lint:fixShin'ya Ueoka2019-12-221-17/+17
|
* Rename valueOf to fromJSONShin'ya UEOKA2019-10-071-12/+12
|
* Use string settings on default settingsShin'ya UEOKA2019-10-071-85/+2
|
* Fix form optionsShin'ya UEOKA2019-10-071-5/+5
|
* Make Settings classShin'ya UEOKA2019-10-061-3/+3
|
* Make Blacklist classShin'ya UEOKA2019-10-061-6/+7
|
* Make Properties classShin'ya UEOKA2019-10-061-7/+8
|
* Make Search classShin'ya UEOKA2019-10-061-12/+10
|
* Make Keymap classShin'ya UEOKA2019-10-061-23/+30
|
* tabs.close: rename selectLeft (boolean) -> select ("left" | "right")chocolateboy2019-07-311-1/+1
| | | | | | | | | | | | | | | | 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-311-1/+1
|
* Add an option to close the current tab and select the tab to the leftchocolateboy2019-07-281-1/+2
| | | | | | | | | | | | | | 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
* Add repeat.last operation to default settingsShin'ya Ueoka2019-05-251-0/+1
|
* Declare setting typesShin'ya Ueoka2019-05-061-0/+414