1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-07 09:46:06 +02:00

Share tab width definitions.

This commit is contained in:
Blaž Hrastnik 2020-10-14 12:01:41 +09:00
parent 0b74d423d0
commit d64f4beede
5 changed files with 6 additions and 9 deletions

View File

@ -4,7 +4,7 @@
Rope, RopeSlice, State,
};
const TAB_WIDTH: usize = 4;
pub const TAB_WIDTH: usize = 4;
fn indent_level_for_line(line: RopeSlice) -> usize {
let mut len = 0;

View File

@ -1,7 +1,7 @@
#![allow(unused)]
pub mod graphemes;
mod history;
mod indent;
pub mod indent;
pub mod macros;
mod position;
pub mod register;

View File

@ -1,5 +1,5 @@
use clap::ArgMatches as Args;
use helix_core::{state::Mode, syntax::HighlightEvent, Range, State};
use helix_core::{indent::TAB_WIDTH, state::Mode, syntax::HighlightEvent, Range, State};
use helix_view::{commands, keymap, View};
use std::{
@ -24,8 +24,6 @@
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();

View File

@ -1,5 +1,6 @@
use helix_core::{
graphemes,
indent::TAB_WIDTH,
regex::Regex,
register, selection,
state::{Direction, Granularity, Mode, State},
@ -541,8 +542,6 @@ pub fn paste(view: &mut View, _count: usize) {
}
}
const TAB_WIDTH: usize = 4;
fn get_lines(view: &View) -> Vec<usize> {
let mut lines = Vec::new();

View File

@ -5,6 +5,7 @@
use crate::theme::Theme;
use helix_core::{
graphemes::{grapheme_width, RopeGraphemes},
indent::TAB_WIDTH,
History, Position, RopeSlice, State,
};
use tui::layout::Rect;
@ -78,8 +79,7 @@ pub fn screen_coords_at_pos(&self, text: &RopeSlice, pos: usize) -> Option<Posit
for grapheme in RopeGraphemes::new(&line_slice) {
if grapheme == "\t" {
// TODO: this should be const TAB_WIDTH
col += 4;
col += TAB_WIDTH;
} else {
let grapheme = Cow::from(grapheme);
col += grapheme_width(&grapheme);