diff options
author | Joe Wilm <joe@jwilm.com> | 2016-07-03 21:05:28 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-07-03 21:07:58 -0700 |
commit | 6639e6f24fab269f23392b11e566ef0a29ca163b (patch) | |
tree | 682a41a773d7b7f0b586a6459ad49ac45585007d /src/main.rs | |
parent | 63098f210e142453e14158a62c6fe0116d5fb94f (diff) | |
download | r-alacritty-6639e6f24fab269f23392b11e566ef0a29ca163b.tar.gz r-alacritty-6639e6f24fab269f23392b11e566ef0a29ca163b.tar.bz2 r-alacritty-6639e6f24fab269f23392b11e566ef0a29ca163b.zip |
Move ::grid::index to ::index
The grid and term modules already rely on the index types, and ansi is
about to be updated with strongly typed APIs. Since Cursor, Line, and
Column are fundamental to the code in several modules, namespacing them
under one of them seems less correct than a module that stands by
itself.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index e73ec15c..8d2a93cd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,6 +44,7 @@ pub mod grid; mod meter; pub mod config; mod input; +mod index; mod tty; pub mod ansi; mod term; |