Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gagbo/vim-gnuplot
Gnuplot scripts support for vim
https://github.com/gagbo/vim-gnuplot
Last synced: about 1 month ago
JSON representation
Gnuplot scripts support for vim
- Host: GitHub
- URL: https://github.com/gagbo/vim-gnuplot
- Owner: gagbo
- Created: 2017-10-11T11:44:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-29T09:11:48.000Z (over 3 years ago)
- Last Synced: 2024-10-15T08:28:33.043Z (3 months ago)
- Language: Vim script
- Size: 19.5 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-gnuplot
A collection of settings (and maybe functions) to make vim go well with gnuplot
# Run as Jobs
To run gnuplot in the background, run it by a `:Make` command (instead of `:make` or `:lmake`), such as
- that of [vim-dispatch](https://github.com/tpope/vim-dispatch) or,
- with [AsyncRun.vim](https://github.com/skywind3000/asyncrun.vim/) installed, that defined by```vim
command! -bang -nargs=* -complete=file -bar Make AsyncRun -auto=make -program=make
```To avoid empty lines in the quickfix list, add `let g:asyncrun_trim = 1` to your `vimrc`.
Other [options](https://github.com/skywind3000/asyncrun.vim/wiki/Options), such as `g:asyncrun_save` might be of interest.