Comparison with macOS's open |
|
---|---|
open | |
reopen |
osascript
which is pre-installed macOS utility- Google Chrome
- Should open Google Chrome if it's not already open.
- Should open a new window, if there is no window but Google Chrome is open.
- If there is only one window, one tab and it's new empty tab, it should use that tab.
- Should focus Google Chrome after opening the URL.
- Should focus first tab, if there is one or multiple.
- Should create a new tab, if there is none.
- Should preserve history.
npm install --global reopen-cli
reopen '<url>'
reopen 'https://devdocs.io/#q=html'
reopen 'https://devdocs.io/#q=react'
Although you can use with any URL, one particular example would be opening
devdocs.io upon pressing 'keywordprg'
mapping which is K
by default.
Create a command.
command! -nargs=* Docs call system(printf('reopen "https://devdocs.io/?q=%s"', <q-args>))
Set 'keywordprg'
to that command.
set keywordprg=:Docs
Now, pressing K
under any keyword (or e.g. :Docs child_process
) will bring
DevDocs docs and repeating that would replace current open tab.
GPL-3.0