| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-29 | Pull configs out into individual repositories | Steve Klabnik | -98/+0 | |
| As we grow, these don't belong in-tree. http://internals.rust-lang.org/t/moving-editor-highlighting-into-their-own-repos/1395 * https://github.com/rust-lang/rust.vim * https://github.com/rust-lang/rust-mode * https://github.com/rust-lang/gedit-config * https://github.com/rust-lang/kate-config * https://github.com/rust-lang/nano-config * https://github.com/rust-lang/zsh-config | ||||
| 2014-11-04 | Added check for absolute file path, removed hard tab, and added ↵ | Damien Radtke | -3/+7 | |
| documentation for new option. | ||||
| 2014-10-24 | Updates based on kballard's feedback. | Damien Radtke | -20/+11 | |
| 2014-10-07 | Use rustc's errorformat and add option to specify permanent parameters. | Damien Radtke | -4/+15 | |
| 2014-09-24 | Some improvements to the Cargo compiler file. | Damien Radtke | -9/+19 | |
| 2014-09-22 | Add cargo.vim compiler file. | Damien Radtke | -0/+49 | |
| 2013-07-12 | rustc compiler config for Vim. | Chris Morgan | -0/+33 | |
| Note that this is not actually *used* by default; it is a matter of configuration still, because you might want to: - Compile all .rs files with `rustc %` (where each can be built itself) - Compile all .rs files with `rustc some-file.rs` (where you are editing part of a crate) - Compile with a different tool, such as `make`. (In this case you might put a `~/.vim/after/compiler/rustc.vim` to match such cases, set makeprg and extend errorformat as appropriate. That should probably go in a different compiler mode, e.g. make-rustc.) To try using it, `:compiler rustc`. Then, `:make` on a file you would run `rustc` on will work its magic, invoking rustc. To automate this, you could have something like `autocmd FileType rust compiler rustc` in your Vim config. | ||||
