about summary refs log tree commit diff
path: root/src/libterm/win.rs
AgeCommit message (Collapse)AuthorLines
2015-01-02Fallout - change array syntax to use `;`Nick Cameron-4/+4
2014-10-30Really fix #17982 this time.Vadim Chugunov-7/+2
2014-10-30Try and fix Windows terminalNick Cameron-23/+23
2014-10-30Changes for Windows terminalNick Cameron-21/+25
2014-10-25Fix bug #17982.Vadim Chugunov-1/+2
2014-09-20Restore original terminal colors after error messages on Windows.Vadim Chugunov-3/+51
2014-08-30Unify non-snake-case lints and non-uppercase statics lintsP1start-1/+1
This unifies the `non_snake_case_functions` and `uppercase_variables` lints into one lint, `non_snake_case`. It also now checks for non-snake-case modules. This also extends the non-camel-case types lint to check type parameters, and merges the `non_uppercase_pattern_statics` lint into the `non_uppercase_statics` lint. Because the `uppercase_variables` lint is now part of the `non_snake_case` lint, all non-snake-case variables that start with lowercase characters (such as `fooBar`) will now trigger the `non_snake_case` lint. New code should be updated to use the new `non_snake_case` lint instead of the previous `non_snake_case_functions` and `uppercase_variables` lints. All use of the `non_uppercase_pattern_statics` should be replaced with the `non_uppercase_statics` lint. Any code that previously contained non-snake-case module or variable names should be updated to use snake case names or disable the `non_snake_case` lint. Any code with non-camel-case type parameters should be changed to use camel case or disable the `non_camel_case_types` lint. [breaking-change]
2014-08-23Complete renaming of win32 to windowsVadim Chugunov-1/+1
2014-05-30windows: Allow snake_case errors for now.Kevin Butler-0/+1
2014-05-16Flush before applying console attributesCorey Richardson-0/+1
2014-05-16Add WinConsole docsCorey Richardson-0/+1
2014-05-16term: add docs and windows supportCorey Richardson-0/+146
Closes #2807