mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 03:47:51 +03:00
Allow unused code for the time being.
This commit is contained in:
parent
3848058472
commit
387fb57c94
5 changed files with 5 additions and 4 deletions
|
@ -8,7 +8,7 @@ pub struct Buffer {
|
||||||
|
|
||||||
impl Buffer {
|
impl Buffer {
|
||||||
pub fn load(path: PathBuf) -> Result<Self, Error> {
|
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)?))?;
|
let contents = Rope::from_reader(BufReader::new(File::open(path)?))?;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#![allow(unused)]
|
||||||
mod buffer;
|
mod buffer;
|
||||||
mod graphemes;
|
mod graphemes;
|
||||||
mod selection;
|
mod selection;
|
||||||
|
|
|
@ -189,7 +189,7 @@ impl ChangeSet {
|
||||||
/// provides a basic form of [operational
|
/// provides a basic form of [operational
|
||||||
/// transformation](https://en.wikipedia.org/wiki/Operational_transformation),
|
/// transformation](https://en.wikipedia.org/wiki/Operational_transformation),
|
||||||
/// and can be used for collaborative editing.
|
/// and can be used for collaborative editing.
|
||||||
pub fn map(self, other: Self) -> Self {
|
pub fn map(self, _other: Self) -> Self {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
#![allow(unused)]
|
|
||||||
use anyhow::Error;
|
use anyhow::Error;
|
||||||
use termwiz::caps::Capabilities;
|
use termwiz::caps::Capabilities;
|
||||||
use termwiz::cell::AttributeChange;
|
use termwiz::cell::AttributeChange;
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
|
#![allow(unused)]
|
||||||
// mod editor;
|
// mod editor;
|
||||||
mod component;
|
mod component;
|
||||||
|
|
||||||
// use editor::Editor;
|
// use editor::Editor;
|
||||||
|
|
||||||
use argh::FromArgs;
|
use argh::FromArgs;
|
||||||
use std::{env, path::PathBuf};
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use anyhow::Error;
|
use anyhow::Error;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue