Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use destructuring-assignment instead of delete operator | Shin'ya Ueoka | 2020-09-22 | 1 | -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/recommended | Shin'ya Ueoka | 2020-04-13 | 1 | -78/+77 |
| | |||||
* | npm run lint:fix | Shin'ya Ueoka | 2019-12-22 | 1 | -17/+17 |
| | |||||
* | Rename valueOf to fromJSON | Shin'ya UEOKA | 2019-10-07 | 1 | -12/+12 |
| | |||||
* | Use string settings on default settings | Shin'ya UEOKA | 2019-10-07 | 1 | -85/+2 |
| | |||||
* | Fix form options | Shin'ya UEOKA | 2019-10-07 | 1 | -5/+5 |
| | |||||
* | Make Settings class | Shin'ya UEOKA | 2019-10-06 | 1 | -3/+3 |
| | |||||
* | Make Blacklist class | Shin'ya UEOKA | 2019-10-06 | 1 | -6/+7 |
| | |||||
* | Make Properties class | Shin'ya UEOKA | 2019-10-06 | 1 | -7/+8 |
| | |||||
* | Make Search class | Shin'ya UEOKA | 2019-10-06 | 1 | -12/+10 |
| | |||||
* | Make Keymap class | Shin'ya UEOKA | 2019-10-06 | 1 | -23/+30 |
| | |||||
* | tabs.close: rename selectLeft (boolean) -> select ("left" | "right") | chocolateboy | 2019-07-31 | 1 | -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$` | chocolateboy | 2019-07-31 | 1 | -1/+1 |
| | |||||
* | Add an option to close the current tab and select the tab to the left | chocolateboy | 2019-07-28 | 1 | -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 settings | Shin'ya Ueoka | 2019-05-25 | 1 | -0/+1 |
| | |||||
* | Declare setting types | Shin'ya Ueoka | 2019-05-06 | 1 | -0/+414 |