Allow unused code for the time being.

This commit is contained in:
Blaž Hrastnik 2020-06-02 10:57:01 +09:00
parent 3848058472
commit 387fb57c94
5 changed files with 5 additions and 4 deletions

View File

@ -8,7 +8,7 @@ pub struct Buffer {
impl Buffer {
pub fn load(path: PathBuf) -> Result<Self, Error> {
let current_dir = env::current_dir()?;
let _current_dir = env::current_dir()?;
let contents = Rope::from_reader(BufReader::new(File::open(path)?))?;

View File

@ -1,3 +1,4 @@
#![allow(unused)]
mod buffer;
mod graphemes;
mod selection;

View File

@ -189,7 +189,7 @@ pub fn compose(self, other: ChangeSet) -> Result<Self, ()> {
/// provides a basic form of [operational
/// transformation](https://en.wikipedia.org/wiki/Operational_transformation),
/// and can be used for collaborative editing.
pub fn map(self, other: Self) -> Self {
pub fn map(self, _other: Self) -> Self {
unimplemented!()
}

View File

@ -1,4 +1,3 @@
#![allow(unused)]
use anyhow::Error;
use termwiz::caps::Capabilities;
use termwiz::cell::AttributeChange;

View File

@ -1,10 +1,11 @@
#![allow(unused)]
// mod editor;
mod component;
// use editor::Editor;
use argh::FromArgs;
use std::{env, path::PathBuf};
use std::path::PathBuf;
use anyhow::Error;