From 0ff61f1144b0b28396b856a03074dba051847131 Mon Sep 17 00:00:00 2001 From: Jinzhou Zhang Date: Tue, 30 Jul 2019 22:29:00 +0800 Subject: [PATCH] fix #205 tabstop of selection was initialized to 0 --- src/selection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/selection.rs b/src/selection.rs index e17c24ee..80c1ec84 100644 --- a/src/selection.rs +++ b/src/selection.rs @@ -62,7 +62,7 @@ impl Selection { line_cursor: 0, hscroll_offset: 0, height: AtomicUsize::new(0), - tabstop: 0, + tabstop: 8, multi_selection: false, reverse: false, no_hscroll: false,