Tab size is pulled properly from settings instead of hardcoded

This commit is contained in:
Keith Simmons 2022-04-06 10:20:57 -07:00
parent 866ffdd4ae
commit 1812480cbb
15 changed files with 128 additions and 87 deletions

View file

@ -8,6 +8,7 @@ use gpui::{
ViewContext, ViewHandle, WeakViewHandle,
};
use project::{Project, ProjectPath, WorktreeId};
use settings::Settings;
use std::{
cmp,
path::Path,
@ -21,7 +22,6 @@ use workspace::{
menu::{Confirm, SelectNext, SelectPrev},
Workspace,
};
use settings::Settings;
pub struct FileFinder {
handle: WeakViewHandle<Self>,