mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 03:47:51 +03:00
chore: remove Clone derive from Syntax
This commit is contained in:
parent
4c5ceb5bed
commit
18aaf93da0
1 changed files with 3 additions and 3 deletions
|
@ -1095,7 +1095,7 @@ thread_local! {
|
|||
})
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug)]
|
||||
pub struct Syntax {
|
||||
pub layers: HopSlotMap<LayerId, LanguageLayer>,
|
||||
root: LayerId,
|
||||
|
@ -1562,7 +1562,7 @@ impl Syntax {
|
|||
bitflags! {
|
||||
/// Flags that track the status of a layer
|
||||
/// in the `Sytaxn::update` function
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug)]
|
||||
struct LayerUpdateFlags : u32{
|
||||
const MODIFIED = 0b001;
|
||||
const MOVED = 0b010;
|
||||
|
@ -1570,7 +1570,7 @@ bitflags! {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug)]
|
||||
pub struct LanguageLayer {
|
||||
// mode
|
||||
// grammar
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue