diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-29 21:58:12 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-02 10:14:30 +0900 |
commit | 3bb157c84c9757b5808c8316009d8ec84d7f0f85 (patch) | |
tree | 9e8f8caf776ffa898acf13ac901a1f1dbfef2add /src/shared | |
parent | 1c21e4fa2860d3dd57826e2b60a1443831eae15e (diff) |
buffer by b command
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, |