about summary refs log tree commit diff
path: root/src/etc/vim/after/syntax
AgeCommit message (Collapse)AuthorLines
2015-01-29Pull configs out into individual repositoriesSteve Klabnik-31/+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-08-13vim: Stop setting conceallevel in the syntax fileKevin Ballard-2/+0
We shouldn't be setting conceallevel in the syntax file. Besides not being able to undo this if we switch to another syntax later, it also interferes with embedding rust in other filetypes (such as markdown). Instead, set it in the ftplugin, where it belongs.
2013-05-14vim: swap operator is goneDaniel Micay-4/+0
2013-05-08General fixes for vimJames Miller-1/+1
Makes colorcolumn setlocal instead of set. Makes conceal opt-in. Removes the seem-to-be obsolete old keywords/types
2012-12-21update after/syntax/rust.vim for removal of <-Daniel Micay-4/+0
2012-09-05vim: Turn "pub" into a big asterisk for those who dislike the look of it.Patrick Walton-0/+7
This is not the default and must be turned on.
2012-08-02vim: Don't link conceals to operators if we're concealing mod paths, because ↵Patrick Walton-1/+5
that makes mod paths show up as operators.
2012-08-01vim: Add a concealer for <->Erick Tryzelaar-0/+4
This may break indentation though. However, without it, vim sees "<->" and interprets it as a "<", folloed by "->", which it conceals as a right arrow, so I'm not sure which is worse.
2012-08-01vim: Move conceal code into vim/after/syntax.Erick Tryzelaar-0/+26
This makes concealment opt-in.