From 929bb40adcb3678b3a229a272222bd3edab62ecf Mon Sep 17 00:00:00 2001 From: Timothy Clem Date: Wed, 17 Jun 2020 10:34:55 -0700 Subject: [PATCH] Shorten to def/ref --- cli/src/tags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/tags.rs b/cli/src/tags.rs index 06f4f4fa..4869b8cc 100644 --- a/cli/src/tags.rs +++ b/cli/src/tags.rs @@ -45,7 +45,7 @@ pub fn generate_tags(loader: &Loader, scope: Option<&str>, paths: &[String]) -> " {:<8} {:<40}\t [{}] {:>9}-{:<9}", tag.syntax_type, str::from_utf8(&source[tag.name_range]).unwrap_or(""), - if tag.is_definition { "definition" } else { "reference" }, + if tag.is_definition { "def" } else { "ref" }, tag.span.start, tag.span.end, )?;