Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Provide a feature flag to be able to embed the runtime folder. | Brian Dawn | 2021-06-06 |
| | | | | | | These changes provide a new feature flag "embed_runtime" that when enabled and built in release mode will embed the runtime folder into the resulting binary. | ||
* | Dropped pico-args in favour of a simpler hand roller parser | Corey Powell | 2021-06-02 |
| | | | | Not the greatest looking, but it gets the job done | ||
* | Drop clap for pico-args | Blaž Hrastnik | 2021-05-31 |
| | | | | | We barely have any flags so it's not worth the compilation time or binary size to use clap. | ||
* | Bump tokio from 1.6.0 to 1.6.1 | dependabot[bot] | 2021-05-30 |
| | | | | | | | Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.6.0...tokio-1.6.1) Signed-off-by: dependabot[bot] <support@github.com> | ||
* | Update deps, introduce the new tree-sitter lifetimes | Blaž Hrastnik | 2021-05-27 |
| | |||
* | Update dependencies | Blaž Hrastnik | 2021-05-18 |
| | |||
* | Hacky way to specify indent scopes per language via toml configs. | Blaž Hrastnik | 2021-05-14 |
| | | | | | | | | | Can't do it via a scm query nicely because it returns an iterator over all the matches, whereas we want to traverse the tree ourselves. Can't extract the pattern data from a parsed query either. Oh well, toml files for now. | ||
* | Update deps. | Blaž Hrastnik | 2021-05-12 |
| | |||
* | Make the config dir locator work on Windows. | Blaž Hrastnik | 2021-05-10 |
| | |||
* | Inline tui as helix-tui fork. | Blaž Hrastnik | 2021-05-09 |
| | | | | | We only rely on some of the rendering primitives and implement our Cursive-style compositor on top. | ||
* | Drop shellexpand. | Blaž Hrastnik | 2021-05-08 |
| | |||
* | Disable default features on futures-util to drop proc macros. | Blaž Hrastnik | 2021-05-08 |
| | |||
* | Work around the rest of the blocking issues. | Blaž Hrastnik | 2021-05-06 |
| | |||
* | Eliminate a few more futures dependencies. | Blaž Hrastnik | 2021-05-06 |
| | |||
* | Tokio migration. | Blaž Hrastnik | 2021-05-06 |
| | |||
* | Closer to a full flake build via naersk. | Blaž Hrastnik | 2021-05-03 |
| | | | | | Blocked on https://github.com/NixOS/nix/issues/4423, build doesn't see submodules. | ||
* | Update dependencies. | Blaž Hrastnik | 2021-04-21 |
| | |||
* | Import tree sitter queries. | Blaž Hrastnik | 2021-04-08 |
| | |||
* | Load config files from ~/.config/helix, fallback to defaults. | Blaž Hrastnik | 2021-04-07 |
| | |||
* | Add yet more language definitions. | Blaž Hrastnik | 2021-04-07 |
| | |||
* | Update deps. | Blaž Hrastnik | 2021-04-01 |
| | |||
* | wip: Async async. Delay response handling with a callback. | Blaž Hrastnik | 2021-03-26 |
| | |||
* | Load theme from toml file. | Blaž Hrastnik | 2021-03-25 |
| | |||
* | Add the machinery to load syntax config from TOML. | Blaž Hrastnik | 2021-03-25 |
| | | | | It's embedded into the binary at build time for now, but it's progress. | ||
* | Update deps. | Blaž Hrastnik | 2021-03-24 |
| | |||
* | Bump deps. | Blaž Hrastnik | 2021-03-15 |
| | |||
* | ui: wip: Markdown doc renderer. | Blaž Hrastnik | 2021-03-05 |
| | |||
* | Bump deps. | Blaž Hrastnik | 2021-03-01 |
| | |||
* | syntax: Drop the rayon dependency for threadpool. | Blaž Hrastnik | 2021-02-24 |
| | | | | We just need a small concurrent threadpool for compilation. | ||
* | flake: Packaging definition. | Blaž Hrastnik | 2021-02-22 |
| | |||
* | Always store the log file under home dir. | Blaž Hrastnik | 2021-02-19 |
| | |||
* | Bump jsonrpc-core, lsp-types. | Blaž Hrastnik | 2021-02-18 |
| | |||
* | Update deps, switch tendril over to crates.io | Blaž Hrastnik | 2021-02-16 |
| | |||
* | deps update | Blaž Hrastnik | 2021-02-09 |
| | |||
* | View tree implementation: render multiple split views. | Blaž Hrastnik | 2021-02-03 |
| | | | | | Cursors are still a bit buggy and we should render in focus statusbar differently than in the other pane. | ||
* | helix-syntax: Speed up compilation by compiling langs in parallel. | Blaž Hrastnik | 2021-01-19 |
| | |||
* | Bump deps. | Blaž Hrastnik | 2021-01-08 |
| | |||
* | lsp: Move timeouts into client.request | Blaž Hrastnik | 2021-01-06 |
| | |||
* | Update deps. | Blaž Hrastnik | 2021-01-06 |
| | |||
* | lsp: Work on syncing the state with the language server. | Blaž Hrastnik | 2020-12-25 |
| | |||
* | lsp: generate_transaction_from_text_edits | Blaž Hrastnik | 2020-12-23 |
| | |||
* | Bump deps. | Blaž Hrastnik | 2020-12-17 |
| | |||
* | File picker mockup, reuses the line editor work done on Prompt. | Blaž Hrastnik | 2020-12-17 |
| | |||
* | wip: Move to new rendering structure. | Blaž Hrastnik | 2020-12-13 |
| | |||
* | move commands and keymap back to terminal. | Blaž Hrastnik | 2020-12-10 |
| | | | | | Command needs to be able to deal with UI. We'll separate it again later on. | ||
* | Update deps. | Blaž Hrastnik | 2020-12-03 |
| | |||
* | wip | Blaž Hrastnik | 2020-12-03 |
| | |||
* | Save command | Blaž Hrastnik | 2020-12-03 |
| | |||
* | lsp: Make base request methods take &self instead of &mut self. | Blaž Hrastnik | 2020-12-03 |
| | |||
* | Configure logging (-vv for debug level logs) | Blaž Hrastnik | 2020-12-03 |
| |