diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-26 18:43:15 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-26 18:43:15 +0900 |
commit | cb36fc666cb2615f911bc855bc91249d167f0dba (patch) | |
tree | ca4db6739528100a6dd965700fc7ffc707f22a74 /src/shared | |
parent | a5f1e06efcc64c181f2e06337e47e4705aebabb8 (diff) |
support r/R commands
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/actions.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/actions.js b/src/shared/actions.js index 656b801..f0a224c 100644 --- a/src/shared/actions.js +++ b/src/shared/actions.js @@ -4,6 +4,7 @@ export const TABS_CLOSE = 'tabs.close'; export const TABS_REOPEN = 'tabs.reopen'; export const TABS_PREV = 'tabs.prev'; export const TABS_NEXT = 'tabs.next'; +export const TABS_RELOAD = 'tabs.reload'; export const SCROLL_UP = 'scroll.up'; export const SCROLL_DOWN = 'scroll.down'; export const SCROLL_TOP = 'scroll.top'; @@ -20,6 +21,7 @@ const BACKGROUND_ACTION_SET = new Set([ TABS_REOPEN, TABS_PREV, TABS_NEXT, + TABS_RELOAD, ZOOM_IN, ZOOM_OUT, ZOOM_NEUTRAL |