1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-11 13:51:01 -05:00
Commit graph

10 commits

Author SHA1 Message Date
Zach Day
2bcd165a78 Add CLI arg for setting working directory
Resolves #478.
2017-04-18 19:53:31 -07:00
Justin Charette
5b079f6d43 Do not replace $SHELL with --command option
Signed-off-by: Justin Charette <charetjc@gmail.com>
2017-04-03 20:46:08 -07:00
Anders Rasmussen
edc2c7f5b9 Configurable window dimensions
Adds a configuration option `dimensions` which will set initial
window size by columns and lines. Changes to the config file will
require restart.

resolves #370
2017-02-06 20:45:17 -08:00
Niklas Claesson
019daa8b69 Add support for -e argument 2017-01-28 12:25:57 -08:00
Kurnevsky Evgeny
1dca5617e2 Use clap as cli parser. 2017-01-24 08:38:38 -08:00
Lukas Lueg
64b42cd2f3 Use the log-crate instead of printing to stdout 2017-01-23 09:14:01 -08:00
Tom Crayford
d7a5981048 print glutin events if --print-events is passed
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 `{:?}`.
2017-01-08 21:09:02 +00:00
Rudis Muiznieks
c0054d0fe2
Added --title argument to set window title 2017-01-06 09:18:23 -06:00
Joe Wilm
ed0b1cfff0 Display manages window, renderer, rasterizer
This is part of an ongoing decoupling effort across the codebase and
tidying effort in main.rs. Everything to do with showing the window with
a grid of characters is now managed by the `Display` type. It owns the
window, the font rasterizer, and the renderer. The only info needed from
it are dimensions of characters and the window itself for sizing the
terminal properly. Additionally, the I/O loop has access to wake it up
when new data arrives.
2016-12-11 20:23:41 -08:00
Joe Wilm
01bb10885b Cleanup cli option parsing
This introduces the `cli` module and the `cli::Options` type. This type
holds all the options passable on the command line in addition to
providing arg parsing.
2016-12-11 20:23:41 -08:00