Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hhatto/cargo-quickfix
https://github.com/hhatto/cargo-quickfix
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hhatto/cargo-quickfix
- Owner: hhatto
- Created: 2017-01-11T16:30:15.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2023-07-01T12:49:45.000Z (over 1 year ago)
- Last Synced: 2024-05-09T21:56:34.813Z (8 months ago)
- Language: Rust
- Size: 22.5 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cargo-quickfix
![cargo-quickfix with vim](https://i.gyazo.com/031481fb45dc501b39f843a9b6dd5928.gif "cargo-quickfix with vim")
## Requirements
Rust 1.16+
## Installation and Setup
```
$ git clone https://github.com/hhatto/cargo-quickfix.git
$ cd cargo-quickfix
$ cargo install --force
```### for vimmer
```
$ mkdir -p PATH_TO_VIM_SYNTASTIC/syntax_checkers/rust
$ cp -p vim_syntastic/cargo.vim PATH_TO_VIM_SYNTASTIC/syntax_checkers/rust/
$ echo "let g:syntastic_rust_checkers = ['cargo']" >> $HOME/.vimrc
```## Usage
```
$ cargo quickfix
src/main.rs:3:5: warning: unused import: `std::thread`, #[warn(unused_imports)] on by default
```