Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eagletmt/coqtop-vim
Interact with coqtop within Vim
https://github.com/eagletmt/coqtop-vim
Last synced: 30 days ago
JSON representation
Interact with coqtop within Vim
- Host: GitHub
- URL: https://github.com/eagletmt/coqtop-vim
- Owner: eagletmt
- Created: 2011-05-13T15:20:23.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-15T12:08:47.000Z (over 11 years ago)
- Last Synced: 2023-04-17T21:21:20.332Z (over 1 year ago)
- Language: VimL
- Homepage:
- Size: 106 KB
- Stars: 11
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# coqtop-vim
Interact with coqtop within Vim.## install
- Install [vimproc](https://github.com/Shougo/vimproc).
- NOTE: Use latest vimproc, because vimproc 5.1 has a serious bug for coqtop-vim (fixed by [this commit](https://github.com/Shougo/vimproc/commit/e97c38caa39be79d6971059afbd9548fa1e67681)).
- Copy coqtop-vim to your 'runtimepath' directory (such as ~/.vim).## usage
`:CoqStart` to start coqtop.To prevent default local mappings, do `:let g:coqtop_no_default_mappings = 1`.
### :CoqGoto
Goto this line. You can go both forward and backward.Mapped to `g` (in normal mode) and `` (in insert mode) by default.
### :CoqClear
Clear current session.Mapped to `c` by default.
### :CoqQuit
Quit coqtop-vim.Mapped to `q` by default.
### :CoqPrint
Same as `Print` vernacular command.Mapped to `p` by default.
### :CoqSearchAbout
Same as `SearchAbout` vernacular command.Mapped to `a` by default.