diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-13 22:30:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-13 22:30:05 +0900 |
commit | 28bfa3ac8124d3453cd539db26da4f4703e783df (patch) | |
tree | dd4461af8343a7d5c9fc13cc51cd0fd5edd0285e /src/shared/commands/docs.js | |
parent | 37840c2abb02948d36cdcfaab9063f3ea67fdb6b (diff) | |
parent | 803e6ea7af60107182356b5fda8e3c2ddfacaefa (diff) |
Merge pull request #431 from ueokande/command-completions
Command completions
Diffstat (limited to 'src/shared/commands/docs.js')
-rw-r--r-- | src/shared/commands/docs.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/shared/commands/docs.js b/src/shared/commands/docs.js new file mode 100644 index 0000000..c73eb71 --- /dev/null +++ b/src/shared/commands/docs.js @@ -0,0 +1,11 @@ +export default { + set: 'Set a value of the property', + open: 'Open a URL or search by keywords in current tab', + tabopen: 'Open a URL or search by keywords in new tab', + winopen: 'Open a URL or search by keywords in new window', + buffer: 'Sekect tabs by matched keywords', + bdelete: 'Close a certain tab matched by keywords', + bdeletes: 'Close all tabs matched by keywords', + quit: 'Close the current tab', + quitall: 'Close all tabs', +}; |