mirror of
https://github.com/wez/wezterm.git
synced 2024-11-27 12:23:46 +03:00
rustfmt
This commit is contained in:
parent
8d6364fa80
commit
296c27d3ff
@ -1,12 +1,12 @@
|
||||
//! Systems that use fontconfig and freetype
|
||||
|
||||
pub use self::fcwrap::Pattern as FontPattern;
|
||||
use super::hbwrap as harfbuzz;
|
||||
use config::{Config, TextStyle};
|
||||
use failure::{self, Error};
|
||||
use font::{shape_with_harfbuzz, FallbackIdx, Font, FontMetrics, FontSystem, GlyphInfo, NamedFont,
|
||||
RasterizedGlyph};
|
||||
use font::{fcwrap, ftwrap};
|
||||
use super::hbwrap as harfbuzz;
|
||||
use std::cell::RefCell;
|
||||
use std::mem;
|
||||
use std::slice;
|
||||
|
@ -3,8 +3,8 @@
|
||||
#[cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))]
|
||||
use freetype;
|
||||
|
||||
use harfbuzz_sys as harfbuzz;
|
||||
pub use self::harfbuzz::*;
|
||||
use harfbuzz_sys as harfbuzz;
|
||||
|
||||
use failure::Error;
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
//! Abstracts over the font selection system for the system
|
||||
|
||||
use super::hbwrap as harfbuzz;
|
||||
use super::super::config::{Config, TextStyle};
|
||||
use failure::Error;
|
||||
use super::hbwrap as harfbuzz;
|
||||
use unicode_width::UnicodeWidthStr;
|
||||
|
||||
/// A bitmap representation of a glyph.
|
||||
|
Loading…
Reference in New Issue
Block a user