Add repeat.last operation to default settings
This commit is contained in:
parent
ccbe08cf66
commit
a2ee6897bf
3 changed files with 3 additions and 0 deletions
|
@ -63,6 +63,7 @@ const fields = [
|
||||||
['zoom.out', 'Zoom-out'],
|
['zoom.out', 'Zoom-out'],
|
||||||
['zoom.neutral', 'Reset zoom level'],
|
['zoom.neutral', 'Reset zoom level'],
|
||||||
['page.source', 'Open a page source'],
|
['page.source', 'Open a page source'],
|
||||||
|
['repeat.last', 'Repeat last change'],
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -390,6 +390,7 @@ export const DefaultSettingData: SettingData = SettingData.valueOf({
|
||||||
"/": { "type": "find.start" },
|
"/": { "type": "find.start" },
|
||||||
"n": { "type": "find.next" },
|
"n": { "type": "find.next" },
|
||||||
"N": { "type": "find.prev" },
|
"N": { "type": "find.prev" },
|
||||||
|
".": { "type": "repeat.last" },
|
||||||
"<S-Esc>": { "type": "addon.toggle.enabled" }
|
"<S-Esc>": { "type": "addon.toggle.enabled" }
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
|
|
|
@ -177,6 +177,7 @@ export const DefaultSetting: Settings = {
|
||||||
'/': { 'type': 'find.start' },
|
'/': { 'type': 'find.start' },
|
||||||
'n': { 'type': 'find.next' },
|
'n': { 'type': 'find.next' },
|
||||||
'N': { 'type': 'find.prev' },
|
'N': { 'type': 'find.prev' },
|
||||||
|
'.': { 'type': 'repeat.last' },
|
||||||
'<S-Esc>': { 'type': 'addon.toggle.enabled' }
|
'<S-Esc>': { 'type': 'addon.toggle.enabled' }
|
||||||
},
|
},
|
||||||
search: {
|
search: {
|
||||||
|
|
Reference in a new issue