{"id":26658252,"url":"https://github.com/vipul-sharma20/vim-browser-tabs","last_synced_at":"2025-04-11T13:08:00.059Z","repository":{"id":76064503,"uuid":"222068906","full_name":"vipul-sharma20/vim-browser-tabs","owner":"vipul-sharma20","description":"Vim plugin to fuzzy search tabs opened in all the browser windows and switch.","archived":false,"fork":false,"pushed_at":"2020-02-05T06:09:07.000Z","size":10,"stargazers_count":19,"open_issues_count":6,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-10T14:46:53.733Z","etag":null,"topics":["fzf","neovim","neovim-plugin","vim","vim-plugin","vimscript"],"latest_commit_sha":null,"homepage":"","language":"Vim script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vipul-sharma20.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-11-16T08:23:52.000Z","updated_at":"2023-08-30T19:44:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"2afbaf3e-2809-48c8-8dc1-0763f4fe3f81","html_url":"https://github.com/vipul-sharma20/vim-browser-tabs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vipul-sharma20%2Fvim-browser-tabs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vipul-sharma20%2Fvim-browser-tabs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vipul-sharma20%2Fvim-browser-tabs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vipul-sharma20%2Fvim-browser-tabs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vipul-sharma20","download_url":"https://codeload.github.com/vipul-sharma20/vim-browser-tabs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248404593,"owners_count":21097780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fzf","neovim","neovim-plugin","vim","vim-plugin","vimscript"],"created_at":"2025-03-25T09:19:07.781Z","updated_at":"2025-04-11T13:08:00.049Z","avatar_url":"https://github.com/vipul-sharma20.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"vim-browser-tabs\n================\n\nVim plugin to fuzzy search tabs opened in all the browser windows and switch.\n\n![Demo](https://i.imgur.com/kTJeHp9.gif)\n\nInstallation\n============\n\n| Plugin Manager | Install with... |\n| ------------- | ------------- |\n| [Pathogen][1] | `git clone https://github.com/vipul-sharma20/vim-browser-tabs ~/.vim/bundle/vim-browser-tabs`\u003cbr/\u003eRemember to run `:Helptags` to generate help tags |\n| [NeoBundle][2] | `NeoBundle 'vipul-sharma20/vim-browser-tabs'` |\n| [Vundle][3] | `Plugin 'vipul-sharma20/vim-browser-tabs'` |\n| [Plug][4] | `Plug 'vipul-sharma20/vim-browser-tabs'` |\n| [VAM][5] | `call vam#ActivateAddons([ 'vim-browser-tabs' ])` |\n| [Dein][6] | `call dein#add('vipul-sharma20/vim-browser-tabs')` |\n| [minpac][7] | `call minpac#add('vipul-sharma20/vim-browser-tabs')` |\n| manual | copy all of the files into your `~/.vim` directory |\n\nConfiguration\n=============\n\n* This plugin mandatorily requires [fzf.vim](https://github.com/junegunn/fzf.vim). Please find the installation instruction for it [here](https://github.com/junegunn/fzf.vim#installation)\n\n* Browser name to fetch tabs from. Eg: Chrome Browser, Brave etc.\n\n  `let g:browser_tabs_default_browser='Brave'`\n\n* Window layout for browser tab list result. Can be 'default' or 'floating'\n\n  `let g:browser_tabs_window_layout='floating'`\n\n**Note: Floating window layout support is only possible in Neovim version \u003e= 0.4.x.**\n\nDocumentation\n=============\n\n`:h vim-browser-tabs`\n\nor check [here][9]\n\nCommands\n========\n\n| Command              | List                                         |\n| ---                  | ---                                          |\n| `GetBrowserTabs`     | Fetches all the opened tabs from the browser |\n\nI recommend you to check documentation for better understanding\n\nNotes\n=====\n\n* At this point, this plugin only works on MacOS since I am using a little AppleScript.\n* This plugin was tested on Chrome Browser and Brave.\n\nTherefore the next features in priority are:\n\n* Make the plugin compatible with Linux first and then Windows.\n* Add support for Firefox.\n\nScreenshots\n===========\n\n### Floating window view\n\n![floating](https://i.imgur.com/r2Is7jw.png)\n\n### Default view\n\n![default](https://i.imgur.com/5RXkn9J.png)\n\nLicense\n=======\n\nMIT\n\n[1]: https://github.com/tpope/vim-pathogen\n[2]: https://github.com/Shougo/neobundle.vim\n[3]: https://github.com/VundleVim/Vundle.vim\n[4]: https://github.com/junegunn/vim-plug\n[5]: https://github.com/MarcWeber/vim-addon-manager\n[6]: https://github.com/Shougo/dein.vim\n[7]: https://github.com/k-takata/minpac/\n[8]: https://cricbuzz.com\n[9]: doc/vim-browser-tabs.txt\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvipul-sharma20%2Fvim-browser-tabs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvipul-sharma20%2Fvim-browser-tabs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvipul-sharma20%2Fvim-browser-tabs/lists"}