diff --git a/QA.md b/QA.md index 2d36d54..1670e05 100644 --- a/QA.md +++ b/QA.md @@ -40,6 +40,7 @@ The behaviors of the console are tested in [Console section](#consoles). - [ ] p: open clipbord's URL in current tab - [ ] P: open clipbord's URL in new tab - [ ] Toggle enabled/disabled of plugin bu Shift+Esc +- [ ] Hide error and info console by Esc ### Following links @@ -55,6 +56,7 @@ The behaviors of the console are tested in [Console section](#consoles). - [ ] Select link and open it in `` tags, for f and F - [ ] Configure custom hint character by `:set hintchars=012345678` - [ ] Configure custom hint character by settings `"hintchars": "012345678"` +- [ ] Opened tabs is in child on Tree Style Tab ### Consoles @@ -187,6 +189,7 @@ The behaviors of the console are tested in [Console section](#consoles). - [ ] Search next/prev by n/N - [ ] Wrap search by n/N - [ ] Find with last keyword if keyword is empty +- [ ] Find keyword last used on new tab opened ## Misc diff --git a/README.md b/README.md index 2421e59..543f49d 100644 --- a/README.md +++ b/README.md @@ -23,26 +23,11 @@ The default mappings are as follows: - O, T, W: similar to o, t, w, but that contains current URL - b: Select tabs by URL or title -#### Scrolling - -- j, k: scroll vertically -- h, l: scroll horizontally -- Ctrl+U, Ctrl+D: scroll pages by half of screen -- Ctrl+B, Ctrl+F: scroll pages by a screen -- 0, $: scroll a page to leftmost/rightmost -- gg, G: scroll to top/bottom - #### Tabs -- d: delete current tab - !d: delete pinned tab - u: reopen close tab -- K, J: select prev or next tab -- g0, g$: select first or last tab -- Ctrl+6: select previous selected tab - r: reload current tab - R: reload current tab without cache -- zp: toggle pin/unpin current tab -- zd: duplicate current tab ### Navigation - f: start following links in the page @@ -54,12 +39,14 @@ The default mappings are as follows: - gi: focus first input #### Misc -- zi, zo: zoom-in/zoom-out -- zz: Set default zoom level + - y: copy URL in current tab - p: open clipbord's URL in current tab - P: open clipbord's URL in new tab - Shift+Esc: enable or disable the add-on in current tab. +- /: start to find a keyword in the page +- n: find next keyword in the page +- N: find prev keyword in the page ### Console commands diff --git a/e2e/contents/tab.test.js b/e2e/contents/tab.test.js index be4288f..4374907 100644 --- a/e2e/contents/tab.test.js +++ b/e2e/contents/tab.test.js @@ -52,7 +52,7 @@ describe("tab test", () => { }); }) - it('makes pinned by zd', () => { + it('makes pinned by zp', () => { let before; let targetTab; return tabs.create(targetWindow.id, SERVER_URL).then((tab) => {