https://github.com/lambdalisue/vim-quickrun-neovim-job
https://github.com/lambdalisue/vim-quickrun-neovim-job
job neovim vim-quickrun
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lambdalisue/vim-quickrun-neovim-job
- Owner: lambdalisue
- Created: 2019-10-14T03:01:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-14T03:01:10.000Z (almost 6 years ago)
- Last Synced: 2025-05-06T00:56:15.762Z (5 months ago)
- Topics: job, neovim, vim-quickrun
- Language: Vim script
- Homepage:
- Size: 1.95 KB
- Stars: 18
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-quickrun-neovim-job
Non official job runner of [vim-quickrun][] for Neovim.
[vim-quickrun]: https://github.com/thinca/vim-quickrun
## Usage
```vim
let g:quickrun_config = {'_': {}}if has('nvim')
" Use 'neovim_job' in Neovim
let g:quickrun_config._.runner = 'neovim_job'
elseif exists('*ch_close_in')
" Use 'job' in Vim which support job feature
let g:quickrun_config._.runner = 'job'
endif
```