pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/editors/helix
Module Name: pkgsrc
Committed By: nikita
Date: Sat Apr 16 17:25:46 UTC 2022
Modified Files:
pkgsrc/editors/helix: DESCR Makefile
Log Message:
helix: Extend description and short description.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/editors/helix/DESCR
cvs rdiff -u -r1.2 -r1.3 pkgsrc/editors/helix/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/editors/helix/DESCR
diff -u pkgsrc/editors/helix/DESCR:1.1 pkgsrc/editors/helix/DESCR:1.2
--- pkgsrc/editors/helix/DESCR:1.1 Sat Apr 2 09:36:15 2022
+++ pkgsrc/editors/helix/DESCR Sat Apr 16 17:25:46 2022
@@ -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.
Index: pkgsrc/editors/helix/Makefile
diff -u pkgsrc/editors/helix/Makefile:1.2 pkgsrc/editors/helix/Makefile:1.3
--- pkgsrc/editors/helix/Makefile:1.2 Sat Apr 9 11:11:09 2022
+++ pkgsrc/editors/helix/Makefile Sat Apr 16 17:25:46 2022
@@ -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 @@ SITES.tree-sitter-zig-${ZIG_TAG}.tar.gz=
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