summary refs log tree commit diff
path: root/src/etc/vim/doc
AgeCommit message (Collapse)AuthorLines
2014-07-07Remove rust_colorcolumn, set textwidth to 99Kevin Ballard-6/+0
The latest change to aturon/rust-guidelines states that lines must not exceed 99 characters. This gets rid of the 80/100 split, so we don't need to customize colorcolumn amymore.
2014-07-07Set softtabstop, textwidth, and optionally colorcolumnKevin Ballard-1/+7
Setting softtabstop makes <Del> delete 4 spaces as if it were a tab. Setting textwidth allows comments to be wrapped automatically. It's set at 80, which is the recommended line length for Rust programs. There are suggestions that it should be 79, but our current style guide says 80 so that's what we're matching. A new setting g:rust_colorcolumn sets colorcolumn as well, to +1,101. This indicates both the textwidth and the second stricter line length of 100 that our style guide lists.
2014-07-07Define a new setting g:rust_foldKevin Ballard-0/+12
g:rust_fold allows folding to be enabled. This lets the user turn on folding without having to define autocommands.
2014-06-18Add commands :RustEmitIr and :RustEmitAsmKevin Ballard-0/+21
2014-06-18Write documentation for the Rust vim pluginKevin Ballard-0/+129