fixed use statement formatting

This commit is contained in:
Emma Tebibyte 2023-04-11 16:18:16 -04:00
parent 41558ecddd
commit c20c58d876
1 changed files with 8 additions and 3 deletions

View File

@ -16,10 +16,15 @@
* along with this program. If not, see https://www.gnu.org/licenses/.
*/
use std::io::{stdin, stdout, Read, Stdout, Write};
use std::io::{ stdin, stdout, Read, Stdout, Write };
use crossterm::{cursor, event, terminal, ExecutableCommand, Result};
use event::{Event, KeyCode, KeyEvent};
use crossterm::{
cursor,
event::{Event, KeyCode, KeyEvent}
terminal,
ExecutableCommand,
Result
};
use ropey::Rope;
struct Buffer {