aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * Update README.mdigravious2017-01-09
| | | | | | Tiny grammar fix.
* | Add another optional config path `$HOME/.alacritty.yml`Alberto Corona2017-01-09
| | | | | | | | - Added note about the default file created if no path is found
* | Support config path `$XDG_CONFIG/alacritty.yml`Alberto Corona2017-01-09
| | | | | | | | - Update README to reflect changes
* | Conform to XDG spec for configurationAlberto Corona2017-01-09
|/ | | | | | - Use $XDG_CONFIG_HOME/alacritty/alacritty.yml for loading the configuration file falling back to $HOME/.config/alacritty/alacritty.yml - Closes #203
* Merge pull request #236 from tcrayford/print_glutin_eventsJoe Wilm2017-01-08
|\ | | | | print glutin events if --print-events is passed
| * print glutin events if --print-events is passedTom Crayford2017-01-08
| | | | | | | | | | | | | | | | When debugging many issues, it's often very helpful to have the raw glutin events printed out to stderr as they come in. This does that. Note that since `glutin::Event` doesn't implement `Display`, we just use rust's debugging output for now via `{:?}`.
* | Remove some dead codeJoe Wilm2017-01-08
| |
* | Fix parsing of coalesced SGR attributesJoe Wilm2017-01-08
|/ | | | cc #116
* Merge pull request #216 from mbrumlow/better_bounds_checkingJoe Wilm2017-01-07
|\ | | | | Better bounds checking.
| * Changes requested.Michael Brumlow2017-01-07
| | | | | | | | | | | | - Rename wrap to input_needs_wrap and providing documentation. - Standardize on min. - Optimization on subtracting col.
| * Removing stale comment.Michael Brumlow2017-01-07
| |
| * Implementing line wrapping.Michael Brumlow2017-01-07
| | | | | | | | | | This implementation of line wrapping ensures self.cursor.col is never out of bounds, thus not requiring checking.
| * Better bounds checking.Michael Brumlow2017-01-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove the use of limit. - Reduce the number of comparisons. When using numbers provided by the PTY for subtractions there is a extra step of ensuring that we won't trigger failure on testing when trying to subtract form zero. ** NOTE ** This commit fails fails the tmux_git_log test. I am submitting a PR to talk about the test. I think the test was generated before a few things were fixed the final test gird still has cells that should have been scrolled off the screen. Also, comparing output from gnome-terminal there is no difference. So this PR is here to discuss and gather information on balding test and discussing the possibility that this test may be flawed. ** NOTE **
* | Merge pull request #224 from valarauca/masterJoe Wilm2017-01-07
|\ \ | | | | | | Enabled Rustc's Link Time Optimization
| * | Enabled Rustc' Link Time Optimizationcody2017-01-07
|/ /
* | Merge pull request #220 from mbrumlow/resize_fixJoe Wilm2017-01-07
|\ \ | | | | | | Fixing resize crashes.
| * | Fixing resize crashes.Michael Brumlow2017-01-07
|/ / | | | | | | | | | | | | | | | | Most of the crashes on resize were due to columns and lines being set to zero. This causes all sorts of other checks within the code to ensure these values are greater than zero before running calculations. To avoid this we just need to ensure that lines and columns are some non zero value. This is seems to be what gnome terminal does. I have selected 2 lines and two columns for min terminal size for now.
* | Merge pull request #214 from lukaslueg/patch-2Joe Wilm2017-01-07
|\ \ | | | | | | Update README.md
| * | Update README.mdlukaslueg2017-01-07
|/ / | | | | Small fix for markdown parsing, github fudges this
* | Merge pull request #208 from nottombrown/patch-1Joe Wilm2017-01-07
|\ \ | | | | | | Update README.md
| * | Update README.mdTom Brown2017-01-07
|/ /
* | Merge pull request #198 from lukaslueg/patch-1Joe Wilm2017-01-07
|\ \ | |/ |/| Update README.md
| * Update README.mdlukaslueg2017-01-07
| | | | | | Useless use of cat
* | Merge pull request #164 from mbrumlow/fix_boundsJoe Wilm2017-01-07
|\ \ | |/ |/| Fixes a slew of bounds issues.
| * Fixes a slew of bounds issues.Michael Brumlow2017-01-07
| |
* | Add instructions for VoidLInux in README.mdNorman2017-01-07
| |
* | Merge pull request #138 from honza/masterJoe Wilm2017-01-07
|\ \ | | | | | | Add "shell" option to config
| * | TypoHonza Pokorny2017-01-07
| | |
| * | Avoid unwrap when determining proper shell to useHonza Pokorny2017-01-07
| | |
| * | Avoid unnecessary closure in a map callHonza Pokorny2017-01-07
| | |
| * | Add doc string to 'shell' config optionHonza Pokorny2017-01-07
| | |
| * | Add "shell" option to configHonza Pokorny2017-01-06
| | | | | | | | | | | | | | | | | | This allows you to configure the shell to use when alacritty starts. cc: #122
* | | Merge pull request #159 from jwilm/fix-intl-inputJoe Wilm2017-01-07
|\ \ \ | | | | | | | | Fix issue with some international inputs
| * | | Fix issue with some international inputsJoe Wilm2017-01-06
| | |/ | |/| | | | | | | cc #87, #55
* | | Merge pull request #188 from coder543/patch-3Joe Wilm2017-01-07
|\ \ \ | |/ / |/| | Change README.md to reflect the current compiler situation
| * | Change README.md to reflect the current compiler situationJosh Leverette2017-01-07
|/ /
* | Merge pull request #131 from Manishearth/stableJoe Wilm2017-01-06
|\ \ | | | | | | Make it compile on stable Rust (almost)
| * | Clippy fixes!Manish Goregaokar2017-01-06
| | |
| * | Add `nightly` feature, use for `unlikely` intrinsicManish Goregaokar2017-01-06
| | |
| * | Remove need for inclusive rangesManish Goregaokar2017-01-06
| | |
| * | Remove need for range_contains featureManish Goregaokar2017-01-06
| | |
| * | Replace need for drop_types_in_const with lazy_staticManish Goregaokar2017-01-06
| | |
| * | Remove need for step_by featureManish Goregaokar2017-01-06
| | |
| * | Make plugin feature optionalManish Goregaokar2017-01-06
| | |
* | | Merge pull request #151 from dannydulai/masterJoe Wilm2017-01-06
|\ \ \ | |_|/ |/| | shift-tab key binding
| * | shift-tab key bindingDanny Dulai2017-01-06
|/ /
* | Merge pull request #132 from tomwadley/xwayland-tipJoe Wilm2017-01-06
|\ \ | | | | | | Add tip for running in XWayland
| * | Add tip for running in XWaylandTom Wadley2017-01-06
|/ /
* | Add blog post to READMEJoe Wilm2017-01-06
| |
* | Merge pull request #115 from krig/opensuseJoe Wilm2017-01-06
|\ \ | |/ |/| Add installation instructions for openSUSE