Skip to content

Commit

Permalink
refactor: rename config.rs to icons.rs and move to top level
Browse files Browse the repository at this point in the history
  • Loading branch information
RoloEdits committed Dec 31, 2024
1 parent 5261d61 commit 2150335
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions helix-view/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,24 @@ use crate::{
events::DocumentFocusLost,
graphics::{CursorKind, Rect},
handlers::Handlers,
icons,
info::Info,
input::KeyEvent,
register::Registers,
theme::{self, Theme},
tree::{self, Tree},
Document, DocumentId, View, ViewId,
};
use config::Icons;
use dap::StackFrame;
use helix_event::dispatch;
use helix_vcs::DiffProviderRegistry;
use icons::Icons;

use futures_util::stream::select_all::SelectAll;
use futures_util::{future, StreamExt};
use helix_lsp::{Call, LanguageServerId};
use tokio_stream::wrappers::UnboundedReceiverStream;

mod config;

use std::{
borrow::Cow,
cell::Cell,
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions helix-view/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pub mod events;
pub mod graphics;
pub mod gutter;
pub mod handlers;
pub mod icons;
pub mod info;
pub mod input;
pub mod keyboard;
Expand Down

0 comments on commit 2150335

Please sign in to comment.