diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-03 17:48:46 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-03 17:48:46 +0900 |
commit | 8cabd68b927fe7022efa11dee082aafe8c2d4f30 (patch) | |
tree | 3cdcc1f557d148cd70a16b767e88b19220761e51 /src/shared | |
parent | 044f24efb64ec52dfdb02e0e0807bc4545c4a21c (diff) | |
parent | 29f82d3a7f339fa99759b589923f0d8657da28f5 (diff) |
Merge branch 'buffer'
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 cd740c2..7151dd1 100644 --- a/src/shared/actions.js +++ b/src/shared/actions.js @@ -1,5 +1,6 @@ export const CMD_OPEN = 'cmd.open'; export const CMD_TABS_OPEN = 'cmd.tabs.open'; +export const CMD_BUFFER = 'cmd.buffer'; export const TABS_CLOSE = 'tabs.close'; export const TABS_REOPEN = 'tabs.reopen'; export const TABS_PREV = 'tabs.prev'; @@ -32,6 +33,7 @@ const BACKGROUND_ACTION_SET = new Set([ const CONTENT_ACTION_SET = new Set([ CMD_OPEN, CMD_TABS_OPEN, + CMD_BUFFER, SCROLL_LINES, SCROLL_PAGES, SCROLL_TOP, |