Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added tab to insert mode #2

Merged
merged 1 commit into from
Oct 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions helix-term/src/editor.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use clap::ArgMatches as Args;
use helix_core::{state::coords_at_pos, state::Mode, syntax::HighlightEvent, Range, State};
use helix_core::{state::Mode, syntax::HighlightEvent, Range, State};
use helix_view::{commands, keymap, View};

use std::{
Expand All @@ -24,6 +24,8 @@ use crossterm::{

use tui::{backend::CrosstermBackend, buffer::Buffer as Surface, layout::Rect, style::Style};

const TAB_WIDTH: usize = 4;

type Terminal = tui::Terminal<CrosstermBackend<std::io::Stdout>>;

static EX: smol::Executor = smol::Executor::new();
Expand Down Expand Up @@ -85,10 +87,7 @@ impl Editor {
// TODO: inefficient, should feed chunks.iter() to tree_sitter.parse_with(|offset, pos|)
let source_code = view.state.doc().to_string();

let last_line = std::cmp::min(
(view.first_line + viewport.height - 1) as usize,
view.state.doc().len_lines() - 1,
);
let last_line = view.last_line(viewport);

let range = {
// calculate viewport byte ranges
Expand Down Expand Up @@ -172,6 +171,8 @@ impl Editor {
if line >= viewport.height {
break 'outer;
}
} else if grapheme == "\t" {
visual_x += (TAB_WIDTH as u16);
} else {
// Cow will prevent allocations if span contained in a single slice
// which should really be the majority case
Expand Down Expand Up @@ -281,12 +282,16 @@ impl Editor {

// render the cursor
let pos = view.state.selection().cursor();
let coords = coords_at_pos(&view.state.doc().slice(..), pos);

let pos = view
.screen_coords_at_pos(&view.state.doc().slice(..), pos, area)
.expect("Cursor is out of bounds.");

execute!(
stdout,
cursor::MoveTo(
coords.col as u16 + viewport.x,
coords.row as u16 - view.first_line + viewport.y,
pos.col as u16 + viewport.x,
pos.row as u16 - view.first_line + viewport.y,
)
);
}
Expand Down
4 changes: 4 additions & 0 deletions helix-view/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,10 @@ pub fn insert_char(view: &mut View, c: char) {
// TODO: need to store into history if successful
}

pub fn insert_tab(view: &mut View, _count: usize) {
insert_char(view, '\t');
}

pub fn insert_newline(view: &mut View, _count: usize) {
insert_char(view, '\n');
}
Expand Down
4 changes: 4 additions & 0 deletions helix-view/src/keymap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ pub fn default() -> Keymaps {
code: KeyCode::Enter,
modifiers: Modifiers::NONE
}] => commands::insert_newline,
vec![Key {
code: KeyCode::Tab,
modifiers: Modifiers::NONE
}] => commands::insert_tab,
)
)
}
52 changes: 50 additions & 2 deletions helix-view/src/view.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
use anyhow::Error;

use std::path::PathBuf;
use std::{borrow::Cow, path::PathBuf};

use crate::theme::Theme;
use helix_core::State;
use helix_core::{
graphemes::{grapheme_width, RopeGraphemes},
Position, RopeSlice, State,
};
use tui::layout::Rect;

pub struct View {
pub state: State,
Expand Down Expand Up @@ -44,4 +48,48 @@ impl View {
self.first_line = line.saturating_sub(padding);
}
}

/// Calculates the last visible line on screen
#[inline]
pub fn last_line(&self, viewport: Rect) -> usize {
std::cmp::min(
(self.first_line + viewport.height - 1) as usize,
self.state.doc().len_lines() - 1,
)
}

/// Translates a document position to an absolute position in the terminal.
/// Returns a (line, col) position if the position is visible on screen.
// TODO: Could return width as well for the character width at cursor.
pub fn screen_coords_at_pos(
&self,
text: &RopeSlice,
pos: usize,
viewport: Rect,
) -> Option<Position> {
let line = text.char_to_line(pos);

if line < self.first_line as usize || line > self.last_line(viewport) {
// Line is not visible on screen
return None;
}

let line_start = text.line_to_char(line);
let line_slice = text.slice(line_start..pos);
let mut col = 0;

for grapheme in RopeGraphemes::new(&line_slice) {
if grapheme == "\t" {
// TODO: this should be const TAB_WIDTH
col += 4;
} else {
let grapheme = Cow::from(grapheme);
col += grapheme_width(&grapheme);
}
}

let row = line - self.first_line as usize;

Some(Position::new(row, col))
}
}