Merge pull request #300 from usk/feature/open-clipboard's-url
open clipboard's URL in current/new tab
This commit is contained in:
commit
be1f8e4d71
8 changed files with 39 additions and 3 deletions
|
@ -49,8 +49,9 @@ export default {
|
|||
ZOOM_OUT: 'zoom.out',
|
||||
ZOOM_NEUTRAL: 'zoom.neutral',
|
||||
|
||||
// Url yank
|
||||
// Url yank/paste
|
||||
URLS_YANK: 'urls.yank',
|
||||
URLS_PASTE: 'urls.paste',
|
||||
|
||||
// Find
|
||||
FIND_START: 'find.start',
|
||||
|
|
|
@ -44,6 +44,8 @@ export default {
|
|||
"gu": { "type": "navigate.parent" },
|
||||
"gU": { "type": "navigate.root" },
|
||||
"y": { "type": "urls.yank" },
|
||||
"p": { "type": "urls.paste", "newTab": false },
|
||||
"P": { "type": "urls.paste", "newTab": true },
|
||||
"/": { "type": "find.start" },
|
||||
"n": { "type": "find.next" },
|
||||
"N": { "type": "find.prev" },
|
||||
|
|
Reference in a new issue