Release 0.0.10
This commit is contained in:
parent
4f561e93b8
commit
f48a60b8e2
8 changed files with 18 additions and 20 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -259,7 +259,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "helix-core"
|
name = "helix-core"
|
||||||
version = "0.1.0"
|
version = "0.0.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"etcetera",
|
"etcetera",
|
||||||
"helix-syntax",
|
"helix-syntax",
|
||||||
|
@ -278,7 +278,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "helix-lsp"
|
name = "helix-lsp"
|
||||||
version = "0.1.0"
|
version = "0.0.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"futures-executor",
|
"futures-executor",
|
||||||
|
@ -300,7 +300,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "helix-syntax"
|
name = "helix-syntax"
|
||||||
version = "0.1.0"
|
version = "0.0.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -310,7 +310,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "helix-term"
|
name = "helix-term"
|
||||||
version = "0.1.0"
|
version = "0.0.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
@ -336,7 +336,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "helix-tui"
|
name = "helix-tui"
|
||||||
version = "0.1.0"
|
version = "0.0.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"cassowary",
|
"cassowary",
|
||||||
|
@ -348,7 +348,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "helix-view"
|
name = "helix-view"
|
||||||
version = "0.1.0"
|
version = "0.0.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"crossterm",
|
"crossterm",
|
||||||
|
|
14
README.md
14
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
|
For more information, see the [website](https://helix-editor.com) or
|
||||||
[documentation](https://docs.helix-editor.com/).
|
[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
|
# Features
|
||||||
|
|
||||||
- Vim-like modal editing
|
- 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
|
# 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
|
We provide packaging for various distributions, but here's a quick method to
|
||||||
build from source.
|
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
|
> NOTE: You should set this to <path to repository>/runtime in development (if
|
||||||
> running via cargo).
|
> running via cargo).
|
||||||
|
>
|
||||||
|
> `export HELIX_RUNTIME=$PWD/runtime`
|
||||||
|
|
||||||
If you want to embed the `runtime/` directory into the Helix binary you can build
|
If you want to embed the `runtime/` directory into the Helix binary you can build
|
||||||
it with:
|
it with:
|
||||||
|
@ -80,13 +85,6 @@ Some suggestions to get started:
|
||||||
We provide an [architecture.md](./docs/architecture.md) that should give you
|
We provide an [architecture.md](./docs/architecture.md) that should give you
|
||||||
a good overview of the internals.
|
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
|
# 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).
|
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).
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "helix-core"
|
name = "helix-core"
|
||||||
version = "0.0.9"
|
version = "0.0.10"
|
||||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "helix-lsp"
|
name = "helix-lsp"
|
||||||
version = "0.0.9"
|
version = "0.0.10"
|
||||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "helix-syntax"
|
name = "helix-syntax"
|
||||||
version = "0.0.9"
|
version = "0.0.10"
|
||||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "helix-term"
|
name = "helix-term"
|
||||||
version = "0.0.9"
|
version = "0.0.10"
|
||||||
description = "A post-modern text editor."
|
description = "A post-modern text editor."
|
||||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "helix-tui"
|
name = "helix-tui"
|
||||||
version = "0.0.9"
|
version = "0.0.10"
|
||||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||||
description = """
|
description = """
|
||||||
A library to build rich terminal user interfaces or dashboards
|
A library to build rich terminal user interfaces or dashboards
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "helix-view"
|
name = "helix-view"
|
||||||
version = "0.0.9"
|
version = "0.0.10"
|
||||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
Loading…
Add table
Reference in a new issue