-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
296 additions
and
78 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
use crate::compositor::{Component, Context}; | ||
use helix_view::graphics::{Margin, Rect, Style}; | ||
use helix_view::info::Info; | ||
use tui::buffer::Buffer as Surface; | ||
use tui::widgets::{Block, Borders, Widget}; | ||
|
||
impl Component for Info { | ||
fn render(&self, viewport: Rect, surface: &mut Surface, cx: &mut Context) { | ||
let block = Block::default().title(self.title).borders(Borders::ALL); | ||
let Info { width, height, .. } = self; | ||
let (w, h) = (*width + 2, *height + 2); | ||
// -2 to subtract command line + statusline. a bit of a hack, because of splits. | ||
let area = Rect::new(viewport.width - w, viewport.height - h - 2, w, h); | ||
let margin = Margin { | ||
vertical: 1, | ||
horizontal: 1, | ||
}; | ||
let Rect { x, y, .. } = area.inner(&margin); | ||
for (y, line) in (y..).zip(self.text.lines()) { | ||
surface.set_string(x, y, line, Style::default()); | ||
} | ||
block.render(area, surface); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
mod completion; | ||
mod editor; | ||
mod info; | ||
mod markdown; | ||
mod menu; | ||
mod picker; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
use crate::input::KeyEvent; | ||
use std::fmt::Write; | ||
use unicode_width::UnicodeWidthStr; | ||
|
||
#[derive(Debug)] | ||
/// Info box used in editor. Rendering logic will be in other crate. | ||
pub struct Info { | ||
/// Title kept as static str for now. | ||
pub title: &'static str, | ||
/// Text body, should contains newline. | ||
pub text: String, | ||
/// Body width. | ||
pub width: u16, | ||
/// Body height. | ||
pub height: u16, | ||
} | ||
|
||
impl Info { | ||
pub fn key(title: &'static str, body: Vec<(Vec<KeyEvent>, &'static str)>) -> Info { | ||
let keymaps_width: u16 = body | ||
.iter() | ||
.map(|r| r.0.iter().map(|e| e.width() as u16 + 2).sum::<u16>() - 2) | ||
.max() | ||
.unwrap(); | ||
let mut text = String::new(); | ||
let mut width = 0; | ||
let height = body.len() as u16; | ||
for (mut keyevents, desc) in body { | ||
let keyevent = keyevents.remove(0); | ||
let mut left = keymaps_width - keyevent.width() as u16; | ||
write!(text, "{}", keyevent).ok(); | ||
for keyevent in keyevents { | ||
write!(text, ", {}", keyevent).ok(); | ||
left -= 2 + keyevent.width() as u16; | ||
} | ||
for _ in 0..left { | ||
text.push(' '); | ||
} | ||
if keymaps_width + 2 + (desc.width() as u16) > width { | ||
width = keymaps_width + 2 + desc.width() as u16; | ||
} | ||
writeln!(text, " {}", &desc).ok(); | ||
} | ||
Info { | ||
title, | ||
text, | ||
width, | ||
height, | ||
} | ||
} | ||
} |
Oops, something went wrong.