Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/notomo/ctrlb.nvim
Control web browsers with neovim
https://github.com/notomo/ctrlb.nvim
neovim typescript
Last synced: 3 months ago
JSON representation
Control web browsers with neovim
- Host: GitHub
- URL: https://github.com/notomo/ctrlb.nvim
- Owner: notomo
- License: mit
- Archived: true
- Created: 2018-04-01T11:40:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-03T22:42:00.000Z (over 4 years ago)
- Last Synced: 2024-06-10T01:37:07.190Z (5 months ago)
- Topics: neovim, typescript
- Language: TypeScript
- Homepage:
- Size: 499 KB
- Stars: 30
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ctrlb.nvim
[![Build Status](https://travis-ci.org/notomo/ctrlb.nvim.svg?branch=master)](https://travis-ci.org/notomo/ctrlb.nvim)
[![Build status](https://ci.appveyor.com/api/projects/status/hgtnmfc1uvoj65yf/branch/master?svg=true)](https://ci.appveyor.com/project/notomo/ctrlb-nvim/branch/master)
[![codecov](https://codecov.io/gh/notomo/ctrlb.nvim/branch/master/graph/badge.svg)](https://codecov.io/gh/notomo/ctrlb.nvim)ctrlb.nvim is a [ctrlb](https://github.com/notomo/ctrlb) client plugin for Neovim.
This plugin can control web browsers without moving the focus from Neovim.## Demo
## Requirements
- Neovim
- Node.js provider
- [ctrlb](https://github.com/notomo/ctrlb)
- [wsxhub](https://github.com/notomo/wsxhub)## Install
```sh
# install Node.js provider
npm install -g neovim
```### [dein.vim](https://github.com/Shougo/dein.vim)
```vim
call dein#add('notomo/ctrlb.nvim', {'build': 'npm run setup'})
```or TOML configuration
```toml
[[plugins]]
repo = 'notomo/ctrlb.nvim'
build = 'npm run setup'
```NOTE: If the npm version < 5.7, use `npm install & npm run build` instead of `npm run setup`.
`npm run setup` requires `npm ci`.NOTE: `:checkhealth ctrlb` checks whether the installation is valid.
## Usage
```
:Ctrlb tab/reload
:Ctrlb tab/open -url=https://github.com/notomo/ctrlb.nvim
```