| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-08 | General fixes for vim | James Miller | -3/+3 | |
| Makes colorcolumn setlocal instead of set. Makes conceal opt-in. Removes the seem-to-be obsolete old keywords/types | ||||
| 2013-05-08 | Improved vim indent file for rust | James Miller | -1/+4 | |
| 2013-05-03 | add gitattributes and fix whitespace issues | Daniel Micay | -23/+9 | |
| 2013-05-02 | auto merge of #6184 : kud1ing/rust/master, r=sanxiyn | bors | -0/+4 | |
| 2013-05-02 | Explain that the source code was generated by this script | kud1ing | -0/+4 | |
| 2013-05-01 | libcore: add N(0,1) and Exp(1) distributions to core::rand. | Huon Wilson | -0/+121 | |
| Sample from the normal and exponential distributions using the Ziggurat algorithm. | ||||
| 2013-04-27 | auto merge of #6066 : djui/rust/patch-1, r=graydon | bors | -1/+6 | |
| 2013-04-26 | Suppress all 'cond' errors in valgrind. #5856 | Brian Anderson | -162/+2 | |
| 2013-04-26 | Fix typo | Uwe Dauernheim | -1/+1 | |
| 2013-04-26 | Allow customization of indent offset | Uwe Dauernheim | -1/+6 | |
| 2013-04-22 | Rename Div operator trait to Quot and Modulo operator trait to Rem | Brendan Zabarauskas | -3/+3 | |
| 2013-04-19 | auto merge of #5945 : graydon/rust/fix-unicode-tables, r=pcwalton | bors | -1/+44 | |
| This switches the unicode functions in core to use static character-range tables and a binary search helper rather than open-coded switch statements. It adds about 50k of read only data to the libcore binary but cuts out a similar amount of compiled IR. Would have done it this way in the first place but we didn't have structured statics for a long time. | ||||
| 2013-04-19 | Try to suppress valgrind errors | Brian Anderson | -1/+1 | |
| I can't reproduce the one on the bots, but this might fix it | ||||
| 2013-04-18 | core: replace unicode match exprs with bsearch in const arrays, minor perf win. | Graydon Hoare | -1/+44 | |
| 2013-04-16 | More valgrind suppressions | Brian Anderson | -0/+8 | |
| 2013-04-15 | Make valgrind suppressions more liberal | Brian Anderson | -3/+0 | |
| Hopefully this puts out the final fire | ||||
| 2013-04-12 | Suppress a bunch of valgrind errors | Brian Anderson | -0/+92 | |
| 2013-04-10 | Bump version to 0.7-pre | Brian Anderson | -1/+1 | |
| 2013-04-09 | auto merge of #5807 : klutzy/rust/vim-inner-doc, r=brson | bors | -4/+4 | |
| Follow-up of #5760: Add syntax highlight for `/*! doc */` or `//! doc`. | ||||
| 2013-04-10 | vim: syntax highlight for inner doc comment | klutzy | -4/+4 | |
| 2013-04-09 | Bump version to 0.7-pre | Brian Anderson | -1/+1 | |
| 2013-04-07 | vim: fix comment highlighting bug | klutzy | -2/+2 | |
| Previous commit had a bug that a line which ends with "//" or "/*" is not correctly highlighted. | ||||
| 2013-04-07 | vim: add rustCommentDoc | klutzy | -2/+6 | |
| 2013-04-07 | vim: disable nested comment | klutzy | -1/+1 | |
| Since comment nesting does not work from 0.4. | ||||
| 2013-04-01 | tidy version numbers and copyright dates | Graydon Hoare | -1/+1 | |
| 2013-03-30 | vim: use Operator group for 'as' | Daniel Micay | -1/+3 | |
| 2013-03-30 | vim: separate the conditional keywords | Daniel Micay | -2/+6 | |
| 2013-03-30 | vim: mark Todo as contained and rm unsafe from it | Daniel Micay | -2/+1 | |
| It's nice to make unsafe stand out, but this way isn't correct because it highlights it in comments. | ||||
| 2013-03-30 | vim: highlight ref + static as storage specifiers | Daniel Micay | -2/+2 | |
| lifetimes and globals are now the only two places static is used, and 'static isn't matched by this | ||||
| 2013-03-30 | vim: assert and pure keywords were removed | Daniel Micay | -6/+3 | |
| 2013-03-25 | kate: remove `const`, `log`, and `pure` keywords, add `super` keyword | Andrew Paseltiner | -3/+1 | |
| 2013-03-20 | etc: Suppress Linux valgrind issues for new scheduler | Patrick Walton | -0/+15 | |
| 2013-03-18 | Update rust.vim | Luqman Aden | -2/+2 | |
| Column limit 78 -> 100. | ||||
| 2013-03-12 | Increase tidy column limit to 100 | Brian Anderson | -1/+1 | |
| 2013-03-12 | Copy libsyntax from local Rust to stage0. | Lawrence Velázquez | -0/+1 | |
| The local_stage0 script was not updated after commit 7dcbaed renamed librustsyntax to libsyntax, so builds using local Rust fail due to missing libsyntax. | ||||
| 2013-03-09 | auto merge of #5285 : jld/rust/emacs-refix, r=brson | bors | -0/+1 | |
| Without this change, rust-mode doesn't work if 'cl hasn't been required by something else, apparently. I'm not entirely sure what changed such that I started seeing this problem instead of not, but maybe the emacs world has been making progress towards not loading 'cl at runtime if it's only needed at compile time. (This change was previously submitted as e93a58d52 and accidentally reverted by ad8b437ad.) | ||||
| 2013-03-09 | kate: remove assert keyword | Andrew Paseltiner | -1/+0 | |
| 2013-03-09 | kate: add Not to list of traits | Andrew Paseltiner | -0/+1 | |
| 2013-03-08 | rust-mode.el uses the 'cl macros, so it should actually require them | Jed Davis | -0/+1 | |
| Without this change, rust-mode doesn't work if 'cl hasn't been required by something else, apparently. I'm not entirely sure what changed such that I started seeing this problem instead of not, but maybe the emacs world has been making progress towards not loading 'cl at runtime if it's only needed at compile time. | ||||
| 2013-03-04 | auto merge of #5211 : apasel422/rust/kate, r=graydon | bors | -12/+62 | |
| These commits remove some obsolete language features, make some highlighting more correct with respect to the language spec, and introduce highlighting for macros, attributes, core traits, and the new region syntax. | ||||
| 2013-03-03 | etc: Suppress another Valgrind issue. rs=burningtree | Patrick Walton | -0/+7 | |
| 2013-03-03 | kate: allow [] regions to be collapsed | Andrew Paseltiner | -2/+4 | |
| 2013-03-03 | kate: restrict char escapes to ones accepted by Rust and highlight hex escapes | Andrew Paseltiner | -3/+11 | |
| 2013-03-03 | kate: detect and highlight attributes | Andrew Paseltiner | -0/+6 | |
| 2013-03-03 | kate: consolidate integer suffixes with &rustIntSuf; entity | Andrew Paseltiner | -3/+4 | |
| 2013-03-03 | kate: add note about &rustIdent; | Andrew Paseltiner | -0/+3 | |
| 2013-03-03 | kate: update Rust version | Andrew Paseltiner | -1/+1 | |
| 2013-03-03 | kate: add Self to types | Andrew Paseltiner | -0/+1 | |
| 2013-03-03 | kate: detect and highlight core traits | Andrew Paseltiner | -0/+25 | |
| 2013-03-03 | kate: detect and highlight regions | Andrew Paseltiner | -0/+2 | |
