yank a URL

This commit is contained in:
Shin'ya Ueoka 2017-10-08 16:37:26 +09:00
parent bbf90e77e9
commit f6996a2274
4 changed files with 23 additions and 1 deletions

View file

@ -37,7 +37,8 @@ export default {
"[[": { "type": "navigate.link.prev" },
"]]": { "type": "navigate.link.next" },
"gu": { "type": "navigate.parent" },
"gU": { "type": "navigate.root" }
"gU": { "type": "navigate.root" },
"y": { "type": "urls.yank" }
},
"search": {
"default": "google",

View file

@ -36,4 +36,7 @@ export default {
ZOOM_IN: 'zoom.in',
ZOOM_OUT: 'zoom.out',
ZOOM_NEUTRAL: 'zoom.neutral',
// Url yank
URLS_YANK: 'urls.yank',
};