From 6639e6f24fab269f23392b11e566ef0a29ca163b Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Sun, 3 Jul 2016 21:05:28 -0700 Subject: 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. --- src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main.rs') 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; -- cgit