pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/editors/helix helix: Extend description and short desc...
details: https://anonhg.NetBSD.org/pkgsrc/rev/44a5ff7cd5e0
branches: trunk
changeset: 377116:44a5ff7cd5e0
user: nikita <nikita%pkgsrc.org@localhost>
date: Sat Apr 16 17:25:46 2022 +0000
description:
helix: Extend description and short description.
diffstat:
editors/helix/DESCR | 26 +++++++++++++++++++++++++-
editors/helix/Makefile | 4 ++--
2 files changed, 27 insertions(+), 3 deletions(-)
diffs (48 lines):
diff -r 8a7f05807433 -r 44a5ff7cd5e0 editors/helix/DESCR
--- a/editors/helix/DESCR Sat Apr 16 15:59:32 2022 +0000
+++ b/editors/helix/DESCR Sat Apr 16 17:25:46 2022 +0000
@@ -1,1 +1,25 @@
-A kakoune / neovim inspired editor.
+A modal editor inspired by kakoune.
+Its main features include:
+Multiple selections by default, based on Kakoune.
+The whole design is based around multiple selections as an editing
+primitive, with a single cursor just being a subset of that. Commands
+manipulate selections which then allow you to concurrently edit code.
+Editing is focused on being easy to reason with.
+
+Syntax highlighting and code editing using Tree-sitter.
+No more slow regex highlighting! Tree-sitter parses code into syntax
+trees much like a compiler, giving us a lot more information about
+code structure. We can track local variables, calculate indentation
+and manipulate selection to select syntax nodes.
+Parsing is incremental and fast enough to run on every keystroke.
+Robust enough to produce results even with syntax errors.
+
+- Built-in language server support.
+ Context aware completion
+ Documentation
+ Diagnostics
+ Code actions
+
+- Runs in a terminal.
+The base implementation uses a terminal frontend and combines well
+with tmux or usage over ssh.
diff -r 8a7f05807433 -r 44a5ff7cd5e0 editors/helix/Makefile
--- a/editors/helix/Makefile Sat Apr 16 15:59:32 2022 +0000
+++ b/editors/helix/Makefile Sat Apr 16 17:25:46 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2022/04/09 11:11:09 nikita Exp $
+# $NetBSD: Makefile,v 1.3 2022/04/16 17:25:46 nikita Exp $
GITHUB_PROJECT= helix
DISTNAME= 22.03
@@ -316,7 +316,7 @@
MAINTAINER= nikita%NetBSD.org@localhost
HOMEPAGE= https://helix-editor.com/
-COMMENT= Editor inspired by kakoune / neovim
+COMMENT= Modal editor inspired by kakoune / neovim
# Additionally, the tree-sitter sources have various licenses.
LICENSE= mpl-2.0
WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${DISTNAME}
Home |
Main Index |
Thread Index |
Old Index