aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/gutter.rs
diff options
context:
space:
mode:
authorDr. David A. Kunz2022-04-16 01:41:25 +0000
committerGitHub2022-04-16 01:41:25 +0000
commitb04c425c63d03f8320eb47ab6e38e4bb79763248 (patch)
tree3882fa2c6c81677e94dea0189a7665fdd77a1616 /helix-view/src/gutter.rs
parent450f348925ff1a2a39b73481f61af6fc7e57ebef (diff)
Make gutters configurable (#1967)
* config option line numbers none * view tests * added tests * doc * comment * Make gutters configurable * docu * docu * rm none docu * order * order * precedence * simpler * rm todo * fixed clippy * order * double quotes * only allow diagnostics and line-numbers * tests * docu * format * rm short variant and more docu * performance improvements * typo * rename
Diffstat (limited to 'helix-view/src/gutter.rs')
-rw-r--r--helix-view/src/gutter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/gutter.rs b/helix-view/src/gutter.rs
index 7327ed1a..06ce1b2e 100644
--- a/helix-view/src/gutter.rs
+++ b/helix-view/src/gutter.rs
@@ -39,7 +39,7 @@ pub fn diagnostic<'doc>(
})
}
-pub fn line_number<'doc>(
+pub fn line_numbers<'doc>(
editor: &'doc Editor,
doc: &'doc Document,
view: &View,