Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add custom keybindings to vim-vixenHEADmaster | Yuchen Pei | 2023-09-09 | 1 | -58/+56 |
| | |||||
* | Await loading completions done on selecting items | Shin'ya Ueoka | 2022-05-05 | 2 | -14/+54 |
| | |||||
* | Pass source string via argument | Shin'ya Ueoka | 2022-05-05 | 2 | -16/+7 |
| | |||||
* | Use useDebounce | Shin'ya Ueoka | 2022-05-05 | 3 | -89/+71 |
| | |||||
* | Get completion types on component initialization | Shin'ya Ueoka | 2022-05-05 | 4 | -40/+31 |
| | |||||
* | Rename completion fields | Shin'ya Ueoka | 2022-05-05 | 4 | -39/+39 |
| | |||||
* | Use React.StrictMode | Shin'ya Ueoka | 2022-02-20 | 2 | -58/+63 |
| | |||||
* | Fix signature for ajv v8.x | Shin'ya Ueoka | 2022-02-01 | 1 | -1/+1 |
| | |||||
* | Regenerate json schema | Shin'ya Ueoka | 2022-02-01 | 1 | -612/+1 |
| | |||||
* | Discover frames on search by count of connections | Shin'ya Ueoka | 2021-09-25 | 3 | -35/+21 |
| | | | | | | | | When a tab switches pages quickly, a disconnect event on top frame is sometime delivered after second connect event. In addition, `tabs.onUpdated()` event is independent on port connection event. Now the background script finds alive frames by only port connection. | ||||
* | Sort frame IDs | Shin'ya Ueoka | 2021-09-25 | 1 | -1/+1 |
| | |||||
* | Create find targets by port connections | Shin'ya Ueoka | 2021-09-25 | 8 | -129/+175 |
| | |||||
* | Search a content from frames successfully loaded | Shin'ya Ueoka | 2021-09-23 | 9 | -30/+118 |
| | |||||
* | Implement backwards find | Shin'ya Ueoka | 2021-07-05 | 2 | -6/+95 |
| | |||||
* | Implement FindNextOperator | Shin'ya Ueoka | 2021-07-05 | 20 | -12/+475 |
| | |||||
* | Return a value to background script | Shin'ya Ueoka | 2021-07-05 | 2 | -11/+10 |
| | | | | | | This change makes the content script able to return a value to the background script by the following steps: 1) receive messages in a single listener, 2) return value with Promise in `onMessage`. | ||||
* | Show caught error on message listener | Shin'ya Ueoka | 2021-07-05 | 1 | -0/+2 |
| | |||||
* | Remove legacy find | Shin'ya Ueoka | 2021-07-05 | 17 | -354/+0 |
| | |||||
* | Merge pull request #1204 from ueokande/fix-keyword-paste | Shin'ya Ueoka | 2021-07-04 | 1 | -1/+1 |
|\ | | | | | Read clipboard from textarea element's value | ||||
| * | Read clipboard from textarea element's value | Shin'ya Ueoka | 2021-07-04 | 1 | -1/+1 |
| | | |||||
* | | yarn lint:fix | Shin'ya Ueoka | 2021-07-04 | 20 | -80/+54 |
|/ | |||||
* | Merge pull request #1146 from ueokande/improve-error-message | Shin'ya Ueoka | 2021-05-09 | 2 | -5/+7 |
|\ | | | | | Improve an error message on invalid settings | ||||
| * | Improve an error message on invalid settings | Shin'ya Ueoka | 2021-05-09 | 2 | -5/+7 |
| | | |||||
* | | Add reader-view keymaps to gr | Shin'ya Ueoka | 2021-05-09 | 2 | -0/+2 |
| | | |||||
* | | Support reader-mode | Shin'ya UEOKA | 2021-05-09 | 5 | -0/+31 |
|/ | |||||
* | Merge pull request #1108 from ueokande/focus-after-error-message | Shin'ya Ueoka | 2021-04-15 | 1 | -0/+1 |
|\ | | | | | Hide console to focus main window after find executed | ||||
| * | Hide console to focus main window after find executed | Shin'ya Ueoka | 2021-04-14 | 1 | -0/+1 |
| | | |||||
* | | Show an error on mark not set | Shin'ya Ueoka | 2021-04-14 | 1 | -2/+3 |
|/ | |||||
* | Delay completion query for users input | Shin'ya Ueoka | 2021-04-12 | 1 | -55/+115 |
| | |||||
* | Revert PrefetchAndCache | Shin'ya Ueoka | 2021-04-12 | 4 | -188/+23 |
| | |||||
* | Replace app state with Custom Hooks | Shin'ya Ueoka | 2021-04-11 | 11 | -202/+302 |
| | |||||
* | Reload colorscheme on mode changed | Shin'ya Ueoka | 2021-04-11 | 1 | -2/+4 |
| | |||||
* | Replace completion state with Custom Hooks | Shin'ya Ueoka | 2021-04-11 | 10 | -445/+477 |
| | |||||
* | Replace colorscheme state with React Hooks | Shin'ya Ueoka | 2021-04-06 | 14 | -90/+89 |
| | |||||
* | Make resize to a custom hook | Shin'ya Ueoka | 2021-04-05 | 3 | -24/+34 |
| | |||||
* | Separate Command and Completion reducer | Shin'ya Ueoka | 2021-04-05 | 10 | -490/+567 |
| | |||||
* | Separate as CommandPrompt | Shin'ya Ueoka | 2021-04-04 | 3 | -185/+186 |
| | |||||
* | Separate FindPrompt | Shin'ya Ueoka | 2021-04-04 | 3 | -32/+92 |
| | |||||
* | Separate Message to InfoMessage and ErrorMessage | Shin'ya Ueoka | 2021-04-04 | 4 | -35/+38 |
| | |||||
* | Extract ttheme as a ColorSchemeProvider | Shin'ya Ueoka | 2021-04-04 | 6 | -33/+37 |
| | |||||
* | Replace Console component with a React Hooks | Shin'ya Ueoka | 2021-04-04 | 4 | -155/+174 |
| | |||||
* | Fix props type | Shin'ya Ueoka | 2021-04-04 | 2 | -8/+6 |
| | |||||
* | Make Completion as a React.FC | Shin'ya Ueoka | 2021-04-04 | 4 | -119/+87 |
| | |||||
* | update releases URL to match new versioning scheme | Cihan Demirci | 2021-03-28 | 1 | -1/+1 |
| | |||||
* | Send resize message to the sender tab instead of the current tab. | Shin'ya Ueoka | 2021-03-28 | 3 | -13/+14 |
| | | | | | | Sending resize message to the current table occurs an error, just after switching the tab by a `tabopen` command. The background script unable to connect the current (new tab) because it is in an initialization. | ||||
* | Move classes to a correct directory | Shin'ya Ueoka | 2021-03-28 | 4 | -3/+3 |
| | |||||
* | change bootstrap order | Shin'ya Ueoka | 2021-03-21 | 2 | -10/+12 |
| | |||||
* | Inject iframe on top window | Shin'ya Ueoka | 2021-03-21 | 2 | -4/+12 |
| | |||||
* | Attach/detach console iframe on addon enabled/disabled | Shin'ya Ueoka | 2021-03-21 | 7 | -22/+61 |
| | |||||
* | Load content scripts on document.body is ready | Shin'ya Ueoka | 2021-03-21 | 3 | -13/+50 |
| |