aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock12
-rw-r--r--README.md14
-rw-r--r--helix-core/Cargo.toml2
-rw-r--r--helix-lsp/Cargo.toml2
-rw-r--r--helix-syntax/Cargo.toml2
-rw-r--r--helix-term/Cargo.toml2
-rw-r--r--helix-tui/Cargo.toml2
-rw-r--r--helix-view/Cargo.toml2
8 files changed, 18 insertions, 20 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3d556388..b23941fc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -259,7 +259,7 @@ dependencies = [
[[package]]
name = "helix-core"
-version = "0.1.0"
+version = "0.0.10"
dependencies = [
"etcetera",
"helix-syntax",
@@ -278,7 +278,7 @@ dependencies = [
[[package]]
name = "helix-lsp"
-version = "0.1.0"
+version = "0.0.10"
dependencies = [
"anyhow",
"futures-executor",
@@ -300,7 +300,7 @@ dependencies = [
[[package]]
name = "helix-syntax"
-version = "0.1.0"
+version = "0.0.10"
dependencies = [
"cc",
"serde",
@@ -310,7 +310,7 @@ dependencies = [
[[package]]
name = "helix-term"
-version = "0.1.0"
+version = "0.0.10"
dependencies = [
"anyhow",
"chrono",
@@ -336,7 +336,7 @@ dependencies = [
[[package]]
name = "helix-tui"
-version = "0.1.0"
+version = "0.0.10"
dependencies = [
"bitflags",
"cassowary",
@@ -348,7 +348,7 @@ dependencies = [
[[package]]
name = "helix-view"
-version = "0.1.0"
+version = "0.0.10"
dependencies = [
"anyhow",
"crossterm",
diff --git a/README.md b/README.md
index 271c7bf5..3ad44fff 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,8 @@ myself agreeing with most of kakoune's design decisions.
For more information, see the [website](https://helix-editor.com) or
[documentation](https://docs.helix-editor.com/).
+All shortcuts/keymaps can be found [in the documentation on the website](https://docs.helix-editor.com/keymap.html)
+
# Features
- Vim-like modal editing
@@ -25,7 +27,8 @@ It's a terminal-based editor first, but I'd like to explore a custom renderer
# Installation
-Note: Only Rust and Golang have indentation definitions at the moment.
+Note: Only certain languages have indentation definitions at the moment. Check
+`runtime/<lang>/` for `indents.toml`.
We provide packaging for various distributions, but here's a quick method to
build from source.
@@ -44,6 +47,8 @@ the `HELIX_RUNTIME` environment variable.
> NOTE: You should set this to <path to repository>/runtime in development (if
> running via cargo).
+>
+> `export HELIX_RUNTIME=$PWD/runtime`
If you want to embed the `runtime/` directory into the Helix binary you can build
it with:
@@ -80,13 +85,6 @@ Some suggestions to get started:
We provide an [architecture.md](./docs/architecture.md) that should give you
a good overview of the internals.
-## Usage
-
-### Keyboard shortcuts / Keymap
-
-All shortcuts/keymaps can be found in the documentation on the website:
-- https://docs.helix-editor.com/keymap.html
-
# Getting help
Discuss the project on the community [Matrix Space](https://matrix.to/#/#helix-community:matrix.org) (make sure to join `#helix-editor:matrix.org` if you're on a client that doesn't support Matrix Spaces yet).
diff --git a/helix-core/Cargo.toml b/helix-core/Cargo.toml
index 80e7602a..c544e108 100644
--- a/helix-core/Cargo.toml
+++ b/helix-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-core"
-version = "0.0.9"
+version = "0.0.10"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
license = "MPL-2.0"
diff --git a/helix-lsp/Cargo.toml b/helix-lsp/Cargo.toml
index cfdbfa83..1d74c7b8 100644
--- a/helix-lsp/Cargo.toml
+++ b/helix-lsp/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-lsp"
-version = "0.0.9"
+version = "0.0.10"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
license = "MPL-2.0"
diff --git a/helix-syntax/Cargo.toml b/helix-syntax/Cargo.toml
index 5ca4ae8d..293731cb 100644
--- a/helix-syntax/Cargo.toml
+++ b/helix-syntax/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-syntax"
-version = "0.0.9"
+version = "0.0.10"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
license = "MPL-2.0"
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml
index b8392ad5..75edd723 100644
--- a/helix-term/Cargo.toml
+++ b/helix-term/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-term"
-version = "0.0.9"
+version = "0.0.10"
description = "A post-modern text editor."
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
diff --git a/helix-tui/Cargo.toml b/helix-tui/Cargo.toml
index f0831e82..d819fea1 100644
--- a/helix-tui/Cargo.toml
+++ b/helix-tui/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-tui"
-version = "0.0.9"
+version = "0.0.10"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
description = """
A library to build rich terminal user interfaces or dashboards
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml
index 28d026ae..9bac60e4 100644
--- a/helix-view/Cargo.toml
+++ b/helix-view/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-view"
-version = "0.0.9"
+version = "0.0.10"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
license = "MPL-2.0"