mirror of
https://github.com/helix-editor/website.git
synced 2025-10-05 15:52:38 +02:00
Add release highlights for 25.07 (#58)
Co-authored-by: Nik Revenco <pm@nikrev.com>
This commit is contained in:
186
content/news/release-25.07-highlights.md
Normal file
186
content/news/release-25.07-highlights.md
Normal file
@@ -0,0 +1,186 @@
|
||||
+++
|
||||
title = "Release 25.07 Highlights"
|
||||
date = 2025-07-15T00:01:00Z
|
||||
type = "post"
|
||||
description = "Highlights of the 25.07 release."
|
||||
in_search_index = true
|
||||
+++
|
||||
|
||||
A long-awaited 25.07 release is finally here. This release saw the replacement of a major, core component of Helix and the addition of plenty of flashy features besides. This release saw changes from 195 contributors. A hearty _thank you_ to everyone who made this release possible.
|
||||
|
||||
New to Helix? Helix is a modal text editor with built-in support for multiple selections, Language Server Protocol (LSP), tree-sitter, and experimental support for Debug Adapter Protocol (DAP).
|
||||
|
||||
Buckle up; these release notes will get a bit technical as we talk about our new bindings to Tree-sitter, `tree-house`. Before we get into the weeds, let's see check out flashier features.
|
||||
|
||||
## File explorer
|
||||
|
||||
{{ asciinema(id="file-explorer", width="94", height="25") }}
|
||||
|
||||
25.07 adds a file explorer under `<space>e`. The file explorer is a _picker_, a [telescope](https://github.com/nvim-telescope/telescope.nvim)-like UI component central to Helix. Like most other pickers you can fuzzy search within the options. Selecting a directory with Enter opens a new file explorer under that directory and selecting a file opens that file. This is useful for examining a directory as a hierarchy. In contrast the usual file explorer (`<space>f`) opens a picker with the contents of a directory recursively. For sprawling projects, the file explorer can be a more precise tool.
|
||||
|
||||
## LSP documentColors
|
||||
|
||||
One of the flashier features of the Language Server Protocol (LSP) spec is the [Document Color Request](microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_documentColor). This request allows the client (Helix) to ask a language server like `tailwindcss-language-server` or `vscode-css-language-server` what ranges of the document correspond to RGB colors.
|
||||
|
||||
In 25.07 Helix now requests document colors from language servers and displays the swatch (a small box) with the color, inline. This is exactly like the LSP inlay hints feature - which shows types - but for colors.
|
||||
|
||||
{{ asciinema(id="lsp-document-colors", width="94", height="25") }}
|
||||
|
||||
## New command mode features
|
||||
|
||||
Command mode (`:`) is used to execute _typable_ commands. `:write` is a typable command, for example, that takes an optional argument. So is `:quit` - which takes no arguments.
|
||||
|
||||
The syntax for command mode is nuanced. It should be simple so that common operations like `:write path/to/doc.md` are easy to type. But it also needs tools for escaping spaces like in `:write 'a b.txt'`. And for some commands it's useful to have a custom or extensible syntax, like `:run-shell-command <complex shell-specific command>`.
|
||||
|
||||
25.07 includes a complete rewrite of all of the code used to parse and represent arguments and provide completions for the command line. This fixes a number of bugs with parsing and completion, like trying to complete files with spaces in their names, and introduces two new features, _flags_ and _expansions_.
|
||||
|
||||
### Flags
|
||||
|
||||
Flags work just like flags you'd pass in a shell command. They're meant to cover cases where you want to execute a command with a minor modification in behavior.
|
||||
|
||||
So far flags are only used for a small set of commands: the `:write` family of commands (any command starting with `:write`) and `:sort`.
|
||||
|
||||
25.07 removes the `:rsort` command and replaces it with `:sort --reverse`, or `:sort -r` for short. And the `:write` commands now all accept a `--no-format` flag. Typically you want to format the current document(s), if they're configured to auto-format, but occasionally it's useful to write the file exactly as-is. These are great use-cases for flags: you shouldn't need extra typable commands just to tweak small details.
|
||||
|
||||
Flags are displayed in the infobox for typable commands and the long versions (like `--reverse`) can be auto-completed.
|
||||
|
||||
### Expansions
|
||||
|
||||
Expansions introduce a special syntax to interpolate values. These mostly follow [Kakoune](https://github.com/mawww/kakoune)'s concept of expansions with some minor tweaks.
|
||||
|
||||
Variables based on the current editor state can be written as `%{variable_name}`. `%{buffer_name}` prints the name of the currently-focused document as it appears in the statusline, and `%{cursor_line}` prints the 1-indexed line number of the primary cursor.
|
||||
|
||||
Shell commands can be executed with the `%sh{..}` expansion. Together with the variable expansions above and the new, simple `:echo` command that prints to the statusline, a command like this prints the git blame of the current line on the statusline:
|
||||
|
||||
```
|
||||
:echo %sh{git blame -L %{cursor_line},+1 %{buffer_name}}
|
||||
```
|
||||
|
||||
Both variable names and expansion kinds (like `sh` for shell commands or `u` for Unicode) can be auto-completed.
|
||||
|
||||
### Extensible parsing
|
||||
|
||||
The initial reason to explore this rewrite was to revisit how the command line was parsed. With the changes in 25.07, command mode parses and completes file names better, allows for flags and expansions, and also enables switching to other methods of parsing part-way through the line.
|
||||
|
||||
Typable commands `:set-option` and `:toggle-option` now use [`serde_json`'s streaming deserializer](https://docs.rs/serde_json/latest/serde_json/struct.StreamDeserializer.html) to parse complex config values like lists. Shell commands like `:run-shell-command` and `:pipe` no longer try to parse the command line after the command name. So you don't need to guess how to escape Helix's parsing rules and then your shell's parsing rules - the ultimate quote hell.
|
||||
|
||||
## Tree-house
|
||||
|
||||
In this release cycle we switched out the crates we use to interact with Tree-sitter, adding new crates built from the ground up and removing the official bindings alongside a lot of old code from Helix.
|
||||
|
||||
The rest of this post will discuss details about Tree-sitter and Tree-house. Looking for more details about the changes since Helix 25.01.1? Check out the [changelog] for the full set of code changes.
|
||||
|
||||
#### Tree-sitter
|
||||
|
||||
Not familiar with [Tree-sitter](https://github.com/tree-sitter/tree-sitter)? At a high level, it's a framework for generating and using fast, error-tolerant parsers. In a `grammar.js` file you can write parser rules via the [Grammar DSL](https://tree-sitter.github.io/tree-sitter/creating-parsers/2-the-grammar-dsl.html) and use then use `tree-sitter` CLI tools to generate and test the parser.
|
||||
|
||||
Tools like editors can then use the parser you've defined with the Tree-sitter C library, or language specific bindings, to parse and act on syntax trees. What you do with the syntax tree is up to your imagination! Language servers can use Tree-sitter for their parsers, diff tools like [Difftastic](https://github.com/Wilfred/difftastic) can produce syntax-aware diffs, a language server like [Codebook](https://github.com/blopker/codebook) can do a syntax-aware scan for spell checking. Even [GitHub uses tree-sitter](https://docs.github.com/en/repositories/working-with-files/using-files/navigating-code-on-github) for code navigation and highlighting of some languages.
|
||||
|
||||
A very powerful tool for working with parsed trees is _Tree-sitter queries_. Queries are a way to pattern-match against subtrees and _capture_ nodes for future use. For an editor you might use a query, commonly called `highlights.scm`, to capture a tree node like a Rust keyword in order to highlight the node's text according to the current theme.
|
||||
|
||||
Like syntax trees, the applications for queries are only limited by your imagination. We currently use queries in Helix for highlighting, indentation and textobjects (recognizing functions, parameters, etc.). In the future, code folding, spell checking and code navigation could use tree-sitter queries as well.
|
||||
|
||||
#### History in Helix
|
||||
|
||||
Helix depended on Tree-sitter for syntax highlighting even before its initial public release via the official Rust bindings to the C library, the [`tree-sitter`](https://crates.io/crates/tree-sitter) crate. The `tree-sitter` crate wraps the C library and is fairly low level. We also need a highlighter and that is provided by a separate crate: `tree-sitter-highlight`.
|
||||
|
||||
[`tree-sitter-highlight`](https://crates.io/crates/tree-sitter-highlight) provides a syntax highlighter which takes the queries for a language and a document's text to highlight and can be iterated to produce highlight events. Helix could then consume highlight iterators while rendering the viewable documents. This works out-of-the-box with `tree-sitter-highlight` and for or simple use-cases like highlighting a document once, `tree-sitter-highlight` is all you need.
|
||||
|
||||
The problem with `tree-sitter-highlight` is that it doesn't work incrementally. Creating a new highlight iterator means fully re-parsing the document as well as re-analyzing the queries. This is wasteful since Tree-sitter can reuse queries. Plus parsing in Tree-sitter can work incrementally: you can give the old syntax tree to Tree-sitter and it will parse the new version of the document faster.
|
||||
|
||||
So Helix's early highlighter was a fork of `tree-sitter-highlight`, inspired by Tree-sitter's use in the [Atom editor](https://github.com/atom/atom), which factored out the parsed tree (a `Syntax` type) and `tree_sitter::Query`s from the highlighter. Ideally we wanted to extract this highlighter into its own crate one day so we could share it easily with other tools.
|
||||
|
||||
This highlighter grew to become unmaintainable, though. Fixes for longstanding bugs were too large to make or completely incompatible with this highlighter's design and the code was hard to reason about.
|
||||
|
||||
#### Enter Tree-house
|
||||
|
||||
With this release we've replaced the highlighter with a new crate: [`tree-house`](https://github.com/helix-editor/tree-house). We wrote Tree-house from scratch based on our experience with those early highlighters.
|
||||
|
||||
Tree-house leans into the things that worked well like separating parsing from querying and determining injections during parsing. And it leans away from the things that didn't work well, like exposing highlights as an `Iterator`. The Tree-house code is broken down into smaller and more understandable components and it squashes longstanding bugs that we were powerless to solve before. Tree-house also opens the door for future improvements like parallel parsing.
|
||||
|
||||
Tree-house's main strength is its robust handling of a feature called _injections_.
|
||||
|
||||
#### Injections, a tree of trees
|
||||
|
||||
_Injections_ are a concept from `tree-sitter-highlight`. Injection queries capture nodes which should 'switch' to another language. For example in Markdown, you can use a code-fence like so:
|
||||
|
||||
```rust
|
||||
println!("Hello, world!")
|
||||
```
|
||||
|
||||
And you would expect the contents of that code-fence to be highlighted as Rust code. How this works is that the full text of this Markdown document is parsed using a Markdown Tree-sitter parser. An `injections.scm` query for Markdown tells Helix that the contents of this code-fence should be treated as Rust code instead. Then Helix runs a Rust Tree-sitter parser for that range of the document and creates a syntax tree.
|
||||
|
||||
Then when it comes time to highlight this document, the `highlights.scm` query for Markdown defines highlights for the Markdown parts. And when we get to the Rust _layer_ of the document, the Rust `highlights.scm` take over.
|
||||
|
||||
While this is a simple example, injections can work robustly even in complicated cases. This release adds support for Markdown injection within Rust's doc comments for example, leading to deeply nested injections like this:
|
||||
|
||||
```rust
|
||||
/// A type that parses **stuff**
|
||||
///
|
||||
/// This is a doc comment, so it should have _Markdown_ highlighting
|
||||
/// on top of the regular comment highlights.
|
||||
///
|
||||
/// # Heading 1
|
||||
///
|
||||
/// Know what we can do with Markdown? Inject Rust!
|
||||
///
|
||||
/// println!("Hello, world!");
|
||||
pub struct Parser(/* ... */);
|
||||
```
|
||||
|
||||
In a Rust file like this, the _root_ layer covering the full document is Rust, naturally. Then each doc line comment (`///`) has the content past it parsed as a Markdown document, _combined_ - meaning that the ranges are collectively treated as one Markdown layer. And nested within that, the indented block should act like a code-fence which is another Rust layer.
|
||||
|
||||
Internally Tree-house represents this _layer_ concept as a tree. The overall `Syntax` type has a root layer for its file type, and children layers under that for all of its injections. And the children layers can inject other layers themselves, and so on. So the layers form a tree. And each layer is parsed so that it has its own syntax tree, making a kind of _tree of trees_.
|
||||
|
||||
#### Incremental injections
|
||||
|
||||
Injections were previously discussed way back in the [22.03 release notes](./2022-03-28-release-22.03-highlights.md) which added support for _combined_ injections, like those Markdown comments. Later that year, [22.12](content/news/2022-12-06-release-22.12-highlights.md) brought _incremental injections_. That change reduced the unnecessary work done to re-parse and rerun injections queries for documents with many injections. The switch to Tree-house improves upon incremental injections so that injection layers are re-parsed and injection queries are rerun only for layers which actually changed from any set of edits.
|
||||
|
||||
For a more intuitive idea of how this works, imagine a large Markdown list. The Markdown Tree-sitter parser is actually split into two: one for block syntax like code fences and another for "inline" syntax like bold, italics and inline code. The Markdown parser injects the "inline Markdown" parser for situations like list items, so a very large list in Markdown means thousands of small injections of the "inline" parser for each list item.
|
||||
|
||||
With the switch to Tree-house, editing within one list item in a large list will only cause the re-parsing and rerun of injections queries for root layer and the edited "inline" layer - the minimum amount of work required.
|
||||
|
||||
#### Locals
|
||||
|
||||
Another useful concept from `tree-sitter-highlight` is _locals_. `locals.scm` is a query used to tag nodes which should have their highlight applied to any later _references_ within the same _scope_.
|
||||
|
||||
Imagine a simple Rust function:
|
||||
|
||||
```rust
|
||||
fn add(a: usize, b: usize) -> usize {
|
||||
a + b
|
||||
}
|
||||
```
|
||||
|
||||
The `a` and `b` parameters to this function should be highlighted as parameters - possibly a different highlight depending on the theme. To track this information, the locals query captures nodes for function parameters like `a` and `b` and also the _scope_: the function body in this case. Any _references_ - also captured by the locals query - within the scope should inherit the definition's highlight.
|
||||
|
||||
Tree-house takes a different approach to locals which solves a longstanding bug in Helix. Since the highlighter is only run for the small range you can see on your screen, locals disappeared whenever the definition fell out of view.
|
||||
|
||||
{{ asciinema(id="viewport-locals-before", width="94", height="25") }}
|
||||
|
||||
Notice how the parameters `slice`, `char_idx` and `n` lose their parameter highlight (underlined) when the parameters go out of view.
|
||||
|
||||
With Tree-house, the definitions are tracked at parse-time and stored in a tree format, like injections, for fast lookup. So the current view of the code doesn't make a difference. Parameters are highlighted correctly regardless of whether the definition is within view.
|
||||
|
||||
{{ asciinema(id="viewport-locals-after", width="94", height="25") }}
|
||||
|
||||
Now `slice`, `char_idx` and `n` parameters keep their highlight no matter how far into the function you go.
|
||||
|
||||
#### Injections for all
|
||||
|
||||
One of the nicer quality-of-life improvements brought by Tree-house is that Tree-house's `Syntax` type - corresponding to a parsed document - has functions for working across injections smoothly. `Syntax` is organized as a tree of trees, so looking up injection layers is done in logarithmic time rather than a full scan of all layers.
|
||||
|
||||
Building on this, a `TreeCursor` type mirroring the `TreeCursor` from Tree-sitter C library moves across injection layers with an API nearly identical to Tree-sitter's `TreeCursor` API. A new `QueryIter` type provides the ability to run any query across all injection layers in the document - not just highlights.
|
||||
|
||||
Taking advantage of injections for all Tree-sitter based features will lead to a more consistent experience across language boundaries. Comment tokens and textobjects within an HTML `<script>` tag should follow JavaScript rules rather than HTML. Indentation within a Markdown code-fence should follow the language you're writing out, not Markdown. These features are not yet merged or released but eventually all Tree-sitter based Helix features should behave as consistently as highlighting.
|
||||
|
||||
## Wrapping up
|
||||
|
||||
These has been the highlights from the 25.07 release plus a deeper dive into our Tree-sitter integration. Check out the full [changelog] for the details.
|
||||
|
||||
Come chat about usage and development questions in the [Matrix space][matrix]
|
||||
and follow along with Helix's development in the [GitHub repository][helix-git].
|
||||
|
||||
[changelog]: https://github.com/helix-editor/helix/blob/master/CHANGELOG.md#2507-2025-07-TODO
|
||||
[helix-git]: https://github.com/helix-editor/helix/
|
||||
[matrix]: https://matrix.to/#/#helix-community:matrix.org
|
72
static/file-explorer.cast
Normal file
72
static/file-explorer.cast
Normal file
@@ -0,0 +1,72 @@
|
||||
{"version": 2, "width": 94, "height": 25, "timestamp": 1752246719, "env": {"SHELL": "/run/current-system/sw/bin/fish", "TERM": "xterm-kitty"}}
|
||||
[0.164517, "o", "Welcome to fish, the friendly interactive shell\r\nType \u001b[32mhelp\u001b(B\u001b[m for instructions on how to use fish\r\n"]
|
||||
[0.16971, "o", "\u001b[?2004h"]
|
||||
[0.169808, "o", "\u001b]7;file://mango2/src/helix/hx\u0007"]
|
||||
[0.169978, "o", "\u001b[5 q"]
|
||||
[0.170132, "o", "\u001b]133;D\u0007\u001b]133;A;special_key=1\u0007"]
|
||||
[0.170378, "o", "\u001b]7;kitty-shell-cwd://mango2/src/helix/hx\u0007"]
|
||||
[0.215622, "o", "\u001b]0;/s/h/hx\u0007\u001b[30m\u001b(B\u001b[m\r"]
|
||||
[0.215657, "o", "\u001b[92mmichael\u001b(B\u001b[m@\u001b(B\u001b[mmango2\u001b(B\u001b[m \u001b[32m/s/h/hx\u001b(B\u001b[m (master)\u001b(B\u001b[m> \u001b[K\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:11:59\u001b(B\u001b[m\r\u001b[72C\r\u001b[33C"]
|
||||
[0.570059, "o", "h\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:11:59\u001b(B\u001b[m\r\u001b[72C\r\u001b[34C"]
|
||||
[0.571476, "o", "\b\u001b[38;2;255;0;0mh\u001b[30m\u001b(B\u001b[m\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:11:59\u001b(B\u001b[m\r\u001b[72C\r\u001b[34C"]
|
||||
[0.575889, "o", "\u001b[38;2;85;85;85mx\u001b[30m\u001b(B\u001b[m\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:11:59\u001b(B\u001b[m\r\u001b[72C\r\u001b[34C"]
|
||||
[0.657813, "o", "\u001b[38;2;255;0;0mx\u001b[30m\u001b(B\u001b[m\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:11:59\u001b(B\u001b[m\r\u001b[72C\r\u001b[35C"]
|
||||
[0.6582, "o", "\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:11:59\u001b(B\u001b[m\r\u001b[72C\r\u001b[35C"]
|
||||
[0.658393, "o", "\b\b\u001b[38;2;0;95;215mhx\u001b[30m\u001b(B\u001b[m\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:11:59\u001b(B\u001b[m\r\u001b[72C\r\u001b[35C"]
|
||||
[0.858643, "o", "\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:11:59\u001b(B\u001b[m\r\u001b[72C\r\u001b[35C\r\n\u001b[30m\u001b(B\u001b[m"]
|
||||
[0.858722, "o", "\u001b[?2004l\u001b[0 q"]
|
||||
[0.859305, "o", "\u001b]133;C;cmdline_url=hx\u0007"]
|
||||
[0.859741, "o", "\u001b]0;hx /s/h/hx\u0007\u001b[30m\u001b(B\u001b[m\r"]
|
||||
[0.881882, "o", "\u001b[?1049h\u001b[?1004h\u001b[?2004h\u001b[2J\u001b[?1000h\u001b[?1002h\u001b[?1003h\u001b[?1015h\u001b[?1006h\u001b[?u\u001b[c"]
|
||||
[0.885126, "o", "\u001b[>5u"]
|
||||
[0.885328, "o", "\u001b[1;1H\u001b[39;48;2;40;40;40m \u001b[38;2;250;189;47;48;2;40;40;40m 1\u001b[39;48;2;40;40;40m \u001b[38;2;80;73;69;48;2;102;92;84m\u001b[4m \u001b[39;48;2;40;40;40m\u001b[24m \u001b[2;1H \u001b[38;2;124;111;100;48;2;40;40;40m ~\u001b[39;48;2;40;40;40m \u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[3;1H \u001b[4;1H \u001b[5;1H \u001b[6;1H \u001b[7;1H \u001b[8;1H "]
|
||||
[0.885392, "o", " \u001b[9;1H \u001b[10;1H \u001b[11;1H \u001b[12;1H \u001b[13;1H \u001b[14;1H \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H \u001b[19;1H \u001b[20;1H \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;235;219;178;48;2;80;73;69m NOR [scratch] 1 sel 1:1 \u001b[25;1H\u001b[39;48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[1.266503, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[1.746399, "o", "\u001b[1;38H\u001b[39;48;2;60;56;54m┌Space──────────────────────────────────────────────────┐\u001b[2;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mf Open file picker \u001b[39;48;2;60;56;54m │\u001b[3;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mF Open file picker at current working directory \u001b[39;48;2;60;56;54m │\u001b[4;38H│ \u001b[38;2;235;219;178;48;2;60;56;54me Open file explorer in workspace root \u001b[39;48;2;60;56;54m │\u001b[5;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mE Open file explorer at current buffer's directory\u001b[39;48;2;60;56;54m │\u001b[6;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mb Open buffer picker \u001b[39;48;2;60;56;54m │\u001b[7;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mj Open jumplist picker \u001b[39;48;2;60;56;54m │\u001b[8;38H│ \u001b[38;2;235;219;178;48;2;60;56;54ms Open symbol picker \u001b[39;48;2;60;56;54m "]
|
||||
[1.746528, "o", "│\u001b[9;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mS Open workspace symbol picker \u001b[39;48;2;60;56;54m │\u001b[10;38H│ \u001b[38;2;235;219;178;48;2;60;56;54md Open diagnostic picker \u001b[39;48;2;60;56;54m │\u001b[11;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mD Open workspace diagnostic picker \u001b[39;48;2;60;56;54m │\u001b[12;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mg Open changed file picker \u001b[39;48;2;60;56;54m │\u001b[13;38H│ \u001b[38;2;235;219;178;48;2;60;56;54ma Perform code action \u001b[39;48;2;60;56;54m │\u001b[14;38H│ \u001b[38;2;235;219;178;48;2;60;56;54m' Open last picker \u001b[39;48;2;60;56;54m │\u001b[15;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mG Debug (experimental) \u001b[39;48;2;60;56;54m │\u001b[16;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mw Window \u001b[39;48;2;60;56;54m │\u001b[17;38H│ \u001b[38;2;235;219;178;48;2;60;56;54my Yank selections to clipboard \u001b[39;48;2;60;56;54m │\u001b[18;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mY Yank main selection to clipboard \u001b[39;48;2;60;56;54m │\u001b[19;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mp Paste clipboard after selections \u001b[39;48;2;60;56;54m │\u001b[20;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mP Paste clipboard before selections \u001b[39;48;2;60;56;54m │\u001b[21;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mR Replace selections by clipboard content \u001b[39;48;2;60;56;54m │\u001b[22;38H│ \u001b[38;2;235;219;178;48;2;60;56;54m/ Global search in workspace folder \u001b[39;48;2;60;56;54m │\u001b[23;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mk Show docs for item under cursor \u001b[39;48;2;60;56;54m │\u001b[24;38H│ \u001b[38;2;235;219;178;48;2;60;56;54mr Rename symbol \u001b[39;48;2;60;56;54m │\u001b[25;38H└─────────────────────────────────────────\u001b[38;2;235;219;178;48;2;60;56;54m<space>\u001b[39;48;2;60;56;54m───────┘\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[2.192936, "o", "\u001b[1;38H\u001b[39;48;2;40;40;40m \u001b[2;6H┌────────────────────────────────────────┐┌────────────────────────────────────────┐ \u001b[3;6H│\u001b[3;38H \u001b[38;2;235;219;178;48;2;40;40;40m46/46\u001b[39;48;2;40;40;40m ││ \u001b[38;2;131;165;152;48;2;40;40;40mcodebook/\u001b[39;48;2;40;40;40m │ \u001b[4;6H│────────────────────────────────────────││ \u001b[38;2;131;165;152;48;2;40;40;40mhx/\u001b[39;48;2;40;40;40m │ \u001b[5;6H│\u001b[1m\u001b[38;2;235;219;178;48;2;40;40;40m > \u001b[38;2;131;165;152;48;2;40;40;40m../\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[22m\u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mkstring/\u001b[39;48;2;40;40;40m │ \u001b[6;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m.cargo/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mled/\u001b[39;48;2;40;40;40m │ \u001b[7;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m.direnv/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mnvim-lspconfig/\u001b[39;48;2;40;40;40m │ \u001b[8;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m.git/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mnvim-treesitter/\u001b[39;48;2;40;40;40m │ \u001b[9;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m.github/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mropey/\u001b[39;48;2;40;40;40m │ \u001b[10;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mbook/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mslab/\u001b[39;48;2;40;40;40m │ \u001b[11;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mcontrib/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mspellbook/\u001b[39;48;2;40;40;40m │ \u001b[12;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mdocs/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mtree-house/\u001b[39;48;2;40;40;40m │ \u001b[13;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-core/\u001b[38;2;235;219;178;"]
|
||||
[2.193119, "o", "48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mwebsite/\u001b[39;48;2;40;40;40m │ \u001b[14;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-dap/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ \u001b[38;2;131;165;152;48;2;40;40;40mzed/\u001b[39;48;2;40;40;40m │ \u001b[15;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-event/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ │ \u001b[16;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-loader/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ │ \u001b[17;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ │ \u001b[18;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp-types/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ │ \u001b[19;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-parsec/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ │ \u001b[20;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-stdx/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││ │ \u001b[21;6H└────────────────────────────────────────┘└────────────────────────────────────────┘ \u001b[22;38H \u001b[23;38H \u001b[24;38H\u001b[38;2;235;219;178;48;2;80;73;69m 1 sel 1:1 \u001b[25;38H\u001b[39;48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"]
|
||||
[3.411309, "o", "\u001b[3;8H\u001b[38;2;235;219;178;48;2;40;40;40mt\u001b[3;41H23\u001b[3;50H\u001b[38;2;131;165;152;48;2;40;40;40mdebug/\u001b[39;48;2;40;40;40m \u001b[4;50H\u001b[38;2;131;165;152;48;2;40;40;40mtmp/\u001b[5;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[38;2;131;165;152;48;2;40;40;40marget/\u001b[5;50H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40m.rustc_info.json\u001b[6;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mheme.toml\u001b[6;50HCACHEDIR.TAG\u001b[7;10H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mui/\u001b[7;50H\u001b[39;48;2;40;40;40m \u001b[8;10H\u001b[38;2;235;219;178;48;2;40;40;40mCargo.\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40moml\u001b[8;50H\u001b[39;48;2;40;40;40m \u001b[9;10H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40merm/\u001b[9;50H\u001b[39;48;2;40;40;40m \u001b[10;10H\u001b[38;2;235;219;178;48;2;40;40;40mrustfmt.\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40moml"]
|
||||
[3.411441, "o", "\u001b[10;50H\u001b[39;48;2;40;40;40m \u001b[11;10H\u001b[38;2;235;219;178;48;2;40;40;40mlanguages.\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40moml\u001b[11;50H\u001b[39;48;2;40;40;40m \u001b[12;10H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp-\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mypes/\u001b[12;50H\u001b[39;48;2;40;40;40m \u001b[13;10H\u001b[38;2;235;219;178;48;2;40;40;40mbase16_\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mheme.toml\u001b[13;50H\u001b[39;48;2;40;40;40m \u001b[14;10H\u001b[38;2;235;219;178;48;2;40;40;40mrust-\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40moolchain.toml\u001b[14;50H\u001b[39;48;2;40;40;40m \u001b[15;10H\u001b[38;2;131;165;152;48;2;40;40;40m.gi\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40m/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[16;10H\u001b[38;2;131;165;152;48;2;40;40;40mx\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mask/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[17;10Hresul\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[18;10H\u001b[38;2;131;165;152;48;2;40;40;40m.gi\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mhub/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[19;10H\u001b[38;2;131;165;152;48;2;40;40;40mcon\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mrib/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[20;10H\u001b[38;2;131;165;152;48;2;40;40;40mrun\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mime/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"]
|
||||
[3.554713, "o", "\u001b[3;9H\u001b[38;2;235;219;178;48;2;40;40;40me\u001b[3;41H\u001b[39;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m8\u001b[3;50H\u001b[38;2;131;165;152;48;2;40;40;40msrc/\u001b[39;48;2;40;40;40m \u001b[4;51H\u001b[38;2;131;165;152;48;2;40;40;40mests/\u001b[5;10H\u001b[1mhelix-\u001b[38;2;251;73;52;48;2;40;40;40mte\u001b[38;2;131;165;152;48;2;40;40;40mrm/\u001b[5;51H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mgitignore\u001b[39;48;2;40;40;40m \u001b[6;12H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40me\u001b[6;51H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40margo.toml\u001b[39;48;2;40;40;40m \u001b[7;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40marg\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40me\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mt/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[7;50Hbuild.rs\u001b[8;10Hb\u001b[8;12Hse16_\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mh\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40me\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mme.toml\u001b[9;16H\u001b[38;2;131;165;152;48;2;40;40;40mlsp-\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40myp\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40me\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40ms/\u001b[10;10H\u001b[38;2;235;219;178;48;2;40;40;40m.gi\u001b[10;14Hat\u001b[10;17Hribu\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mte\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40ms\u001b[11;10H\u001b[38;2;131;165;152;48;2;40;40;40mrun\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mim\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40me\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40m/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[12;10H.gi\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mt\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mignor\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40me\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[13;10H \u001b[14;10H \u001b[15;10H \u001b[16;10H \u001b[17;10H \u001b[18;10H \u001b[19;10H \u001b[20;10H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"]
|
||||
[3.61011, "o", "\u001b[3;10H\u001b[38;2;235;219;178;48;2;40;40;40mr\u001b[3;42H1\u001b[5;18H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mr\u001b[6;10H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[7;10H \u001b[8;10H \u001b[9;10H \u001b[10;10H \u001b[11;10H \u001b[12;10H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"]
|
||||
[3.698019, "o", "\u001b[3;11H\u001b[38;2;235;219;178;48;2;40;40;40mm\u001b[5;19H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mm\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"]
|
||||
[4.610246, "o", "\u001b[2;6H\u001b[39;48;2;40;40;40m \u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[3;6H \u001b[3;8H \u001b[3;42H \u001b[3;47H \u001b[3;50H \u001b[3;89H \u001b[4;6H \u001b[4;50H \u001b[4;89H \u001b[5;6H \u001b[5;50H \u001b[5;89H \u001b[6;6H \u001b[6;50H \u001b[6;89H \u001b[7;6H \u001b[7;50H \u001b[7;89H \u001b[8;6H \u001b[8;89H \u001b[9;6H \u001b[9;89H \u001b[10;6H \u001b[10;89H \u001b[11;6H \u001b[11;89H \u001b[12;6H \u001b[12;89H \u001b[13;6H \u001b[13;89H \u001b[14;6H \u001b[14;89H \u001b[15;6H \u001b[15;89H \u001b[16;6H \u001b[16;89H \u001b[17;6H \u001b[17;89H \u001b[18;6H \u001b[18;89H \u001b[19;6H \u001b[19;89H \u001b[20;6H \u001b[20;89H \u001b[21;6H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[4.61705, "o", "\u001b[2;6H\u001b[39;48;2;40;40;40m┌────────────────────────────────────────┐┌────────────────────────────────────────┐\u001b[3;6H│\u001b[3;43H\u001b[38;2;235;219;178;48;2;40;40;40m6/6\u001b[3;47H\u001b[39;48;2;40;40;40m││\u001b[3;50H\u001b[38;2;131;165;152;48;2;40;40;40m.cargo/\u001b[3;89H\u001b[39;48;2;40;40;40m│\u001b[4;6H│────────────────────────────────────────││\u001b[4;50H\u001b[38;2;131;165;152;48;2;40;40;40m.direnv/\u001b[4;89H\u001b[39;48;2;40;40;40m│\u001b[5;6H│\u001b[1m\u001b[38;2;235;219;178;48;2;40;40;40m > \u001b[38;2;131;165;152;48;2;40;40;40m../\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[22m\u001b[39;48;2;40;40;40m││\u001b[5;50H\u001b[38;2;131;165;152;48;2;40;40;40m.git/\u001b[5;89H\u001b[39;48;2;40;40;40m│\u001b[6;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40msrc/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[6;50H\u001b[38;2;131;165;152;48;2;40;40;40m.github/\u001b[6;89H\u001b[39;48;2;40;40;40m│\u001b[7;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mtests/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[7;50H\u001b[38;2;131;165;152;48;2;40;40;40mbook/\u001b[7;89H\u001b[39;48;2;40;40;40m│\u001b[8;6H│\u001b[38;2;235;219;178;48;2;40;40;40m .gitignore \u001b[39;48;2;40;40;40m││\u001b[8;50H\u001b[38;2;131;165;152;48;2;40;40;40mcontrib/\u001b[8;89H\u001b[39;48;2;40;40;40m│\u001b[9;6H│\u001b[38;2;235;219;178;48;2;40;40;40m Cargo.toml \u001b[39;48;2;40;40;40m││\u001b[9;50H\u001b[38;2;131;165;152;48;2;40;40;40mdocs/\u001b[9;89H\u001b[39;48;2;40;40;40m│\u001b[10;6H│\u001b[38;2;235;219;178;48;2;40;40;40m build.rs \u001b[39;48;2;40;40;40m││\u001b[10;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-core/\u001b[10;89H\u001b[39;48;2;40;40;40m│\u001b[11;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[11;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-dap/\u001b[11;89H\u001b[39;48;2;40;40;40m│\u001b[12;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[12;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-event/\u001b[12;89H\u001b[39;48;2;40;40;40m│\u001b[13;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[13;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-loader/\u001b[13;89H\u001b[39;48;2;40;40;40m│\u001b[14;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[14;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp/\u001b[14;89H\u001b[39;48;2;40;40;40m│\u001b[15;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[15;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp-types/\u001b[15;89H\u001b[39;48;2;40;40;40m│\u001b[16;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[16;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-pars"]
|
||||
[4.617131, "o", "ec/\u001b[16;89H\u001b[39;48;2;40;40;40m│\u001b[17;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[17;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-stdx/\u001b[17;89H\u001b[39;48;2;40;40;40m│\u001b[18;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[18;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-term/\u001b[18;89H\u001b[39;48;2;40;40;40m│\u001b[19;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[19;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-tui/\u001b[19;89H\u001b[39;48;2;40;40;40m│\u001b[20;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[20;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-vcs/\u001b[20;89H\u001b[39;48;2;40;40;40m│\u001b[21;6H└────────────────────────────────────────┘└────────────────────────────────────────┘\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"]
|
||||
[6.058406, "o", "\u001b[2;6H\u001b[39;48;2;40;40;40m \u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[3;6H \u001b[3;43H \u001b[3;47H \u001b[3;50H \u001b[3;89H \u001b[4;6H \u001b[4;50H \u001b[4;89H \u001b[5;6H \u001b[5;50H \u001b[5;89H \u001b[6;6H \u001b[6;50H \u001b[6;89H \u001b[7;6H \u001b[7;50H \u001b[7;89H \u001b[8;6H \u001b[8;50H \u001b[8;89H \u001b[9;6H \u001b[9;50H \u001b[9;89H \u001b[10;6H \u001b[10;50H \u001b[10;89H \u001b[11;6H \u001b[11;50H \u001b[11;89H \u001b[12;6H \u001b[12;50H \u001b[12;89H \u001b[13;6H \u001b[13;50H \u001b[13;89H \u001b[14;6H \u001b[14;50H \u001b[14;89H \u001b[15;6H \u001b[15;50H \u001b[15;89H \u001b[16;6H \u001b[16;50H \u001b[16;89H \u001b[17;6H \u001b[17;50H \u001b[17;89H \u001b[18;6H \u001b[18;50H \u001b[18;89H \u001b[19;6H \u001b[19;50H \u001b[19;89H \u001b[20;6H \u001b[20;50H \u001b[20;89H \u001b[21;6H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[6.064486, "o", "\u001b[2;6H\u001b[39;48;2;40;40;40m┌────────────────────────────────────────┐┌────────────────────────────────────────┐\u001b[3;6H│\u001b[3;41H\u001b[38;2;235;219;178;48;2;40;40;40m46/46\u001b[3;47H\u001b[39;48;2;40;40;40m││\u001b[3;50H\u001b[38;2;131;165;152;48;2;40;40;40mcodebook/\u001b[3;89H\u001b[39;48;2;40;40;40m│\u001b[4;6H│────────────────────────────────────────││\u001b[4;50H\u001b[38;2;131;165;152;48;2;40;40;40mhx/\u001b[4;89H\u001b[39;48;2;40;40;40m│\u001b[5;6H│\u001b[1m\u001b[38;2;235;219;178;48;2;40;40;40m > \u001b[38;2;131;165;152;48;2;40;40;40m../\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[22m\u001b[39;48;2;40;40;40m││\u001b[5;50H\u001b[38;2;131;165;152;48;2;40;40;40mkstring/\u001b[5;89H\u001b[39;48;2;40;40;40m│\u001b[6;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m.cargo/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[6;50H\u001b[38;2;131;165;152;48;2;40;40;40mled/\u001b[6;89H\u001b[39;48;2;40;40;40m│\u001b[7;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m.direnv/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[7;50H\u001b[38;2;131;165;152;48;2;40;40;40mnvim-lspconfig/\u001b[7;89H\u001b[39;48;2;40;40;40m│\u001b[8;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m.git/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[8;50H\u001b[38;2;131;165;152;48;2;40;40;40mnvim-treesitter/\u001b[8;89H\u001b[39;48;2;40;40;40m│\u001b[9;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m.github/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[9;50H\u001b[38;2;131;165;152;48;2;40;40;40mropey/\u001b[9;89H\u001b[39;48;2;40;40;40m│\u001b[10;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mbook/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[10;50H\u001b[38;2;131;165;152;48;2;40;40;40mslab/\u001b[10;89H\u001b[39;48;2;40;40;40m│\u001b[11;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mcontrib/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[11;50H\u001b[38;2;131;165;152;48;2;40;40;40mspellbook/\u001b[11;89H\u001b[39;48;2;40;40;40m│\u001b[12;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mdocs/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[12;50H\u001b[38;2;131;165;152;48;2;40;40;40mtree-house/\u001b[12;89H\u001b[39;48;2;40;40;40m│\u001b[13;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-core/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[13;50H\u001b[38;2;131;165;152;48;2;40;40;40mwebsite/\u001b[13;89H\u001b[39;48;2;40;40;40m│\u001b[14;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-dap/\u001b[38;2;235;219;178;48;2;40;40;40m "]
|
||||
[6.064621, "o", " \u001b[39;48;2;40;40;40m││\u001b[14;50H\u001b[38;2;131;165;152;48;2;40;40;40mzed/\u001b[14;89H\u001b[39;48;2;40;40;40m│\u001b[15;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-event/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[15;89H│\u001b[16;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-loader/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[16;89H│\u001b[17;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[17;89H│\u001b[18;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp-types/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[18;89H│\u001b[19;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-parsec/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[19;89H│\u001b[20;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-stdx/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[20;89H│\u001b[21;6H└────────────────────────────────────────┘└────────────────────────────────────────┘\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"]
|
||||
[6.506864, "o", "\u001b[3;8H\u001b[38;2;235;219;178;48;2;40;40;40mc\u001b[3;41H14\u001b[3;52H\u001b[38;2;131;165;152;48;2;40;40;40mmpletion/\u001b[4;50H\u001b[38;2;235;219;178;48;2;40;40;40mHelix.appdata.xml\u001b[5;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[38;2;131;165;152;48;2;40;40;40montrib/\u001b[5;50H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mHelix.desktop\u001b[6;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mC\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40margo.lock\u001b[6;50Hhelix-256p.ico\u001b[7;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mC\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40margo.toml\u001b[7;50Hhelix.png\u001b[39;48;2;40;40;40m \u001b[8;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mC\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mHANGELOG.md\u001b[8;50Hhx_launcher.sh\u001b[39;48;2;40;40;40m \u001b[9;11H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40margo/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[9;50Hthemes\u001b[10;10H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40more/\u001b[10;50H\u001b[39;48;2;40;40;40m \u001b[11;10H\u001b[38;2;131;165;152;48;2;40;40;40md\u001b[11;12H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40ms/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[11;50H\u001b[39;48;2;40;40;40m \u001b[12;10H\u001b[38;2;235;219;178;48;2;40;40;40m.envr\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[12;50H\u001b[22m\u001b[39;48;2;40;40;40m \u001b[13;10H\u001b[38;2;235;219;178;48;2;40;40;40mLI\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mC\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mENSE \u001b[13;50H\u001b[39;48;2;40;40;40m \u001b[14;16H\u001b[38;2;131;165;152;48;2;40;40;40mv\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40ms\u001b[14;50H\u001b[39;48;2;40;40;40m \u001b[15;10H\u001b[38;2;235;219;178;48;2;40;40;40mflake.lo\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mk \u001b[16;16H\u001b[38;2;131;165;152;48;2;40;40;40mpars\u001b[16;21H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[17;10H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40ms\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mreenshot.png\u001b[18;10Hrust-tool\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mhain.toml\u001b[19;10H \u001b[20;10H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"]
|
||||
[6.602604, "o", "\u001b[3;9H\u001b[38;2;235;219;178;48;2;40;40;40mo\u001b[3;41H\u001b[39;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m8\u001b[5;11H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mo\u001b[6;10H\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mhelix-\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mco\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mre/\u001b[7;14H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mo\u001b[7;16H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40ml\u001b[7;18Hck\u001b[8;11Harg\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mo\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40m.toml \u001b[9;15H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mo\u001b[10;10HC\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mHANGEL\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mO\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mG.md\u001b[11;10Hs\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mreensh\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mo\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mt.png\u001b[12;10Hrust-tool\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mhain.t\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mo\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40mml\u001b[13;10H \u001b[14;10H \u001b[15;10H \u001b[16;10H \u001b[17;10H \u001b[18;10H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"]
|
||||
[6.690186, "o", "\u001b[3;10H\u001b[38;2;235;219;178;48;2;40;40;40mr\u001b[3;42H2\u001b[3;50H\u001b[38;2;131;165;152;48;2;40;40;40msrc/\u001b[39;48;2;40;40;40m \u001b[4;50H\u001b[38;2;131;165;152;48;2;40;40;40mtests/\u001b[39;48;2;40;40;40m \u001b[5;10H\u001b[1m\u001b[38;2;131;165;152;48;2;40;40;40mhelix-\u001b[38;2;251;73;52;48;2;40;40;40mcor\u001b[38;2;131;165;152;48;2;40;40;40me/\u001b[5;50H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40m.gitignore\u001b[39;48;2;40;40;40m \u001b[6;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mco\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mnt\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mr\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mib/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[6;50HCargo.toml\u001b[39;48;2;40;40;40m \u001b[7;10H\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[7;50H\u001b[39;48;2;40;40;40m \u001b[8;10H\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[8;50H\u001b[39;48;2;40;40;40m \u001b[9;10H\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[9;50H\u001b[39;48;2;40;40;40m \u001b[10;10H\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[11;10H \u001b[12;10H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"]
|
||||
[6.769994, "o", "\u001b[3;11H\u001b[38;2;235;219;178;48;2;40;40;40me\u001b[3;42H1\u001b[5;19H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40me\u001b[6;10H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"]
|
||||
[7.562538, "o", "\u001b[2;6H\u001b[39;48;2;40;40;40m \u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[3;6H \u001b[3;8H \u001b[3;42H \u001b[3;47H \u001b[3;50H \u001b[3;89H \u001b[4;6H \u001b[4;50H \u001b[4;89H \u001b[5;6H \u001b[5;50H \u001b[5;89H \u001b[6;6H \u001b[6;50H \u001b[6;89H \u001b[7;6H \u001b[7;89H \u001b[8;6H \u001b[8;89H \u001b[9;6H \u001b[9;89H \u001b[10;6H \u001b[10;89H \u001b[11;6H \u001b[11;89H \u001b[12;6H \u001b[12;89H \u001b[13;6H \u001b[13;89H \u001b[14;6H \u001b[14;89H \u001b[15;6H \u001b[15;89H \u001b[16;6H \u001b[16;89H \u001b[17;6H \u001b[17;89H \u001b[18;6H \u001b[18;89H \u001b[19;6H \u001b[19;89H \u001b[20;6H \u001b[20;89H \u001b[21;6H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[7.56818, "o", "\u001b[2;6H\u001b[39;48;2;40;40;40m┌────────────────────────────────────────┐┌────────────────────────────────────────┐\u001b[3;6H│\u001b[3;43H\u001b[38;2;235;219;178;48;2;40;40;40m5/5\u001b[3;47H\u001b[39;48;2;40;40;40m││\u001b[3;50H\u001b[38;2;131;165;152;48;2;40;40;40m.cargo/\u001b[3;89H\u001b[39;48;2;40;40;40m│\u001b[4;6H│────────────────────────────────────────││\u001b[4;50H\u001b[38;2;131;165;152;48;2;40;40;40m.direnv/\u001b[4;89H\u001b[39;48;2;40;40;40m│\u001b[5;6H│\u001b[1m\u001b[38;2;235;219;178;48;2;40;40;40m > \u001b[38;2;131;165;152;48;2;40;40;40m../\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[22m\u001b[39;48;2;40;40;40m││\u001b[5;50H\u001b[38;2;131;165;152;48;2;40;40;40m.git/\u001b[5;89H\u001b[39;48;2;40;40;40m│\u001b[6;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40msrc/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[6;50H\u001b[38;2;131;165;152;48;2;40;40;40m.github/\u001b[6;89H\u001b[39;48;2;40;40;40m│\u001b[7;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mtests/\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[7;50H\u001b[38;2;131;165;152;48;2;40;40;40mbook/\u001b[7;89H\u001b[39;48;2;40;40;40m│\u001b[8;6H│\u001b[38;2;235;219;178;48;2;40;40;40m .gitignore \u001b[39;48;2;40;40;40m││\u001b[8;50H\u001b[38;2;131;165;152;48;2;40;40;40mcontrib/\u001b[8;89H\u001b[39;48;2;40;40;40m│\u001b[9;6H│\u001b[38;2;235;219;178;48;2;40;40;40m Cargo.toml \u001b[39;48;2;40;40;40m││\u001b[9;50H\u001b[38;2;131;165;152;48;2;40;40;40mdocs/\u001b[9;89H\u001b[39;48;2;40;40;40m│\u001b[10;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[10;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-core/\u001b[10;89H\u001b[39;48;2;40;40;40m│\u001b[11;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[11;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-dap/\u001b[11;89H\u001b[39;48;2;40;40;40m│\u001b[12;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[12;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-event/\u001b[12;89H\u001b[39;48;2;40;40;40m│\u001b[13;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[13;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-loader/\u001b[13;89H\u001b[39;48;2;40;40;40m│\u001b[14;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[14;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp/\u001b[14;89H\u001b[39;48;2;40;40;40m│\u001b[15;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[15;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-lsp-types/\u001b[15;89H\u001b[39;48;2;40;40;40m│\u001b[16;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[16;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-pars"]
|
||||
[7.56823, "o", "ec/\u001b[16;89H\u001b[39;48;2;40;40;40m│\u001b[17;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[17;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-stdx/\u001b[17;89H\u001b[39;48;2;40;40;40m│\u001b[18;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[18;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-term/\u001b[18;89H\u001b[39;48;2;40;40;40m│\u001b[19;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[19;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-tui/\u001b[19;89H\u001b[39;48;2;40;40;40m│\u001b[20;6H│\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[39;48;2;40;40;40m││\u001b[20;50H\u001b[38;2;131;165;152;48;2;40;40;40mhelix-vcs/\u001b[20;89H\u001b[39;48;2;40;40;40m│\u001b[21;6H└────────────────────────────────────────┘└────────────────────────────────────────┘\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"]
|
||||
[8.25095, "o", "\u001b[3;8H\u001b[38;2;235;219;178;48;2;40;40;40mc\u001b[3;43H2\u001b[3;50H[package]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[4;50H\u001b[38;2;235;219;178;48;2;40;40;40mname\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m\"helix-core\"\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[5;10H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mC\u001b[38;2;235;219;178;48;2;40;40;40margo.toml\u001b[5;50H\u001b[22mdescription\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m\"Helix\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40meditor\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mcore\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mediti\u001b[6;12H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mc\u001b[6;50H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40minclude\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m[\"src/**/*\",\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m\"README.md\"]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[7;10H\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[7;50Hversion.workspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mtrue\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[8;10H\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[8;50Hauthors.workspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mtrue\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[9;10H\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[9;50Hedition.workspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mtrue\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[10;50H\u001b[38;2;235;219;178;48;2;40;40;40mlicense.workspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mtrue\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[11;50H\u001b["]
|
||||
[8.251001, "o", "38;2;235;219;178;48;2;40;40;40mrust-version.workspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mtrue\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[12;50H\u001b[38;2;235;219;178;48;2;40;40;40mcategories.workspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mtrue\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[13;50H\u001b[38;2;235;219;178;48;2;40;40;40mrepository.workspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mtrue\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[14;50H\u001b[38;2;235;219;178;48;2;40;40;40mhomepage.workspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40mtrue\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[15;50H \u001b[39;48;2;40;40;40m \u001b[16;50H\u001b[38;2;235;219;178;48;2;40;40;40m[features]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[17;50H\u001b[38;2;235;219;178;48;2;40;40;40municode-lines\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m[\"ropey/unicode_lines\"\u001b[18;50Hintegration\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;235;219;178;48;2;40;40;40m[]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[19;50H \u001b[39;48;2;40;40;40m \u001b[20;50H\u001b[38;2;235;219;178;48;2;40;40;40m[dependencies]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"]
|
||||
[8.322106, "o", "\u001b[3;9H\u001b[38;2;235;219;178;48;2;40;40;40ma\u001b[3;43H1\u001b[5;11H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40ma\u001b[6;10H\u001b[22m\u001b[38;2;235;219;178;48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"]
|
||||
[8.378291, "o", "\u001b[3;10H\u001b[38;2;235;219;178;48;2;40;40;40mr\u001b[5;12H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mr\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"]
|
||||
[8.401818, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"]
|
||||
[8.404313, "o", "\u001b[3;50H\u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;142;192;124;48;2;40;40;40mpackage\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[4;50H\u001b[38;2;131;165;152;48;2;40;40;40mname\u001b[4;55H=\u001b[4;57H\u001b[38;2;184;187;38;48;2;40;40;40m\"helix-core\"\u001b[5;50H\u001b[38;2;131;165;152;48;2;40;40;40mdescription\u001b[5;62H=\u001b[5;64H\u001b[38;2;184;187;38;48;2;40;40;40m\"Helix\u001b[5;71Heditor\u001b[5;78Hcore\u001b[5;83Hediti\u001b[6;50H\u001b[38;2;131;165;152;48;2;40;40;40minclude\u001b[6;58H=\u001b[6;60H\u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;184;187;38;48;2;40;40;40m\"src/**/*\"\u001b[38;2;189;174;147;48;2;40;40;40m,\u001b[6;73H\u001b[38;2;184;187;38;48;2;40;40;40m\"README.md\"\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[7;50H\u001b[38;2;131;165;152;48;2;40;40;40mversion\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[7;68H=\u001b[7;70H\u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[8;50H\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mauthors\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[8;68H=\u001b[8;70H\u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[9;50H\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40medition\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[9;68H=\u001b[9;70H\u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[10;50H\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mlicense\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[10;68H=\u001b[10;70H\u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[11;50H\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mrust-version\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[11;73H=\u001b[11;75H\u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[12;50H\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mcategories\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[12;71H=\u001b[12;73H\u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[13;50H\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mrepository\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[13;71H=\u001b[13;73H\u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[14;50H\u001b[22m\u001b[38;2;131;165;152;48;2;40;40;40mhomepage\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[14;69H=\u001b[14;71H\u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[16;50H\u001b[22m\u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;142;192;124;48;2;40;40;40mfeatures\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[17;50H\u001b[38;2;131;165;152;48;2;40;40;40municode-lines\u001b[17;64H=\u001b[17;66H\u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;184;187;38;48;2;40;40;40m\"ropey/unicode_lines\"\u001b[18;50H\u001b[38;2;131;165;152;48;2;40;40;40mintegration\u001b[18;62H=\u001b[18;64H\u001b[38;2;189;174;147;48;2;40;40;40m[]\u001b[20;50H[\u001b[38;2;142;192;124;48;2;40;40;40mdependencies\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"]
|
||||
[8.458157, "o", "\u001b[3;11H\u001b[38;2;235;219;178;48;2;40;40;40mg\u001b[5;13H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mg\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"]
|
||||
[8.514427, "o", "\u001b[3;12H\u001b[38;2;235;219;178;48;2;40;40;40mo\u001b[5;14H\u001b[1m\u001b[38;2;251;73;52;48;2;40;40;40mo\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"]
|
||||
[8.552531, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"]
|
||||
[9.142744, "o", "\u001b[1;8H\u001b[38;2;189;174;147;48;2;102;92;84m\u001b[4m[\u001b[38;2;142;192;124;48;2;40;40;40m\u001b[24mpackage\u001b[38;2;189;174;147;48;2;40;40;40m\u001b[4m]\u001b[38;2;80;73;69;48;2;40;40;40m\u001b[24m \u001b[2;5H\u001b[38;2;124;111;100;48;2;40;40;40m2\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mname\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40m\"helix-core\"\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[3;3H\u001b[38;2;124;111;100;48;2;40;40;40m 3\u001b[39;48;2;40;40;40m \u001b[3;8H\u001b[38;2;131;165;152;48;2;40;40;40mdescription\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40m\"Helix\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40meditor\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40mcore\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40mediting\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40mprimitives\"\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[3;89H\u001b[39;48;2;40;40;40m \u001b[4;3H\u001b[38;2;124;111;100;48;2;40;40;40m 4\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40minclude\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;184;187;38;48;2;40;40;40m\"src/**/*\"\u001b[38;2;189;174;147;48;2;40;40;40m,\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40m\"README.md\"\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[4;50H \u001b[4;89H \u001b[5;3H\u001b[38;2;124;111;100;48;2;40;40;40m 5\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mversion\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[5;50H \u001b[5;89H \u001b["]
|
||||
[9.142885, "o", "6;3H\u001b[38;2;124;111;100;48;2;40;40;40m 6\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mauthors\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[6;50H \u001b[6;89H \u001b[7;3H\u001b[38;2;124;111;100;48;2;40;40;40m 7\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40medition\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[7;50H \u001b[7;89H \u001b[8;3H\u001b[38;2;124;111;100;48;2;40;40;40m 8\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mlicense\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[8;50H \u001b[8;89H \u001b[9;3H\u001b[38;2;124;111;100;48;2;40;40;40m 9\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mrust-version\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[9;50H \u001b[9;89H \u001b[10;3H\u001b[38;2;124;111;100;48;2;40;40;40m 10\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mcategories\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[10;50H \u001b[10;89H \u001b[11;3H\u001b[38;2;124;111;100;48;2;40;40;40m 11\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mrepository\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[11;50H \u001b[11;89H \u001b[12;3H\u001b[38;2;124;111;100;48;2;40;40;40m 12\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhomepage\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[12;50H \u001b[12;89H \u001b[13;3H\u001b[38;2;124;111;100;48;2;40;40;40m 13\u001b[39;48;2;40;40;40m \u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[13;50H \u001b[13;89H \u001b[14;3H\u001b[38;2;124;111;100;48;2;40;40;40m 14\u001b[39;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;142;192;124;48;2;40;40;40mfeatures\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[14;50H \u001b[14;89H \u001b[15;3H\u001b[38;2;124;111;100;48;2;40;40;40m 15\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40municode-lines\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;184;187;38;48;2;40;40;40m\"ropey/unicode_lines\"\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[15;50H \u001b[15;89H \u001b[16;3H\u001b[38;2;124;111;100;48;2;40;40;40m 16\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mintegration\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;"]
|
||||
[9.142964, "o", "48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m[]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[16;50H \u001b[16;89H \u001b[17;3H\u001b[38;2;124;111;100;48;2;40;40;40m 17\u001b[39;48;2;40;40;40m \u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[17;50H \u001b[17;89H \u001b[18;3H\u001b[38;2;124;111;100;48;2;40;40;40m 18\u001b[39;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;142;192;124;48;2;40;40;40mdependencies\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[18;50H \u001b[18;89H \u001b[19;3H\u001b[38;2;124;111;100;48;2;40;40;40m 19\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-stdx\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m{\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mpath\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40m\"../helix-stdx\"\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m}\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[19;50H \u001b[19;89H \u001b[20;3H\u001b[38;2;124;111;100;48;2;40;40;40m 20\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-loader\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m{\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mpath\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40m\"../helix-loader\"\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m}\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[20;89H \u001b[21;3H\u001b[38;2;124;111;100;48;2;40;40;40m 21\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mhelix-parsec\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m{\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mpath\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;184;187;38;48;2;40;40;40m\"../helix-parsec\"\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m}\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[22;3H\u001b[38;2;124;111;100;48;2;40;40;40m 22\u001b[22;8H\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[23;3H\u001b[38;2;124;111;100;48;2;40;40;40m 23\u001b[23;8H\u001b[38;2;131;165;152;48;2;40;40;40mropey\u001b[38;2;189;174;147;48;2;40;40;40m.\u001b[38;2;131;165;152;48;2;40;40;40mworkspace\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[1m\u001b[38;2;211;134;155;48;2;40;40;40mtrue\u001b[22m\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[24;8H\u001b[38;2;235;219;178;48;2;80;73;69mhelix-\u001b[24;15Hore/Cargo.toml\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[9.528596, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[9.95458, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"]
|
||||
[10.05025, "o", "\u001b[15;1H\u001b[38;2;235;219;178;48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-n\u001b[24;10Hxt \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;84H \u001b[24;86H \u001b[24;91H \u001b[25;1H\u001b[38;2;235;219;178;48;2;40;40;40m:\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"]
|
||||
[10.36276, "o", "\u001b[15;1H\u001b[39;48;2;40;40;40m \u001b[38;2;124;111;100;48;2;40;40;40m 15\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40municode-lines\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m[\u001b[38;2;184;187;38;48;2;40;40;40m\"ropey/unicode_lines\"\u001b[38;2;189;174;147;48;2;40;40;40m]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[16;1H \u001b[38;2;124;111;100;48;2;40;40;40m 16\u001b[39;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40mintegration\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;131;165;152;48;2;40;40;40m=\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[38;2;189;174;147;48;2;40;40;40m[]\u001b[38;2;80;73;69;48;2;40;40;40m \u001b[39;48;2;40;40;40m \u001b[17;1H\u001b[38;2;235;219;178;48;2;60;56;54m┌──────────────────────────────────────────────────────────"]
|
||||
[10.362811, "o", "──────────────────────────────┐\u001b[39;48;2;40;40;40m \u001b[18;1H\u001b[38;2;235;219;178;48;2;60;56;54m│ Close the current view. │\u001b[39;48;2;40;40;40m \u001b[19;1H\u001b[38;2;235;219;178;48;2;60;56;54m│ Aliases: q │\u001b[39;48;2;40;40;40m \u001b[20;1H\u001b[38;2;235;219;178;48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39;48;2;40;40;40m \u001b[21;1H\u001b[38;2;235;219;178;48;2;80;73;69mq\u001b[21;3Hit \u001b[21;32Hwrite-quit\u001b[21;63Hcquit \u001b[22;1Hq\u001b[22;3Hit! \u001b[22;32Hwrite-quit! \u001b[22;63Hcquit! \u001b[23;1Hq\u001b[23;3Hit-all \u001b[23;32Hwrite-qu\u001b[23;41Ht-all\u001b[23;63H \u001b[24;1Hq\u001b[24;3Hit-all! \u001b[24;32Hwrite-quit-all!\u001b[24;63H \u001b[25;2H\u001b[38;2;235;219;178;48;2;40;40;40mq\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"]
|
||||
[10.810105, "o", "\u001b[?25h\u001b[2 q\u001b[0 q\u001b[2 q\u001b[?12h\u001b[?25h\u001b[?1006l\u001b[?1015l\u001b[?1003l\u001b[?1002l\u001b[?1000l\u001b[<1u\u001b[?2004l"]
|
||||
[10.810202, "o", "\u001b[?1004l\u001b[?1049l"]
|
||||
[10.820266, "o", "\u001b]133;D;0\u0007\u001b[2m⏎\u001b(B\u001b[m \r⏎ \r\u001b[K"]
|
||||
[10.8246, "o", "\u001b[?2004h\u001b[5 q"]
|
||||
[10.824669, "o", "\u001b]133;D\u0007\u001b]133;A;special_key=1\u0007\u001b]7;kitty-shell-cwd://mango2/src/helix/hx\u0007"]
|
||||
[10.847683, "o", "\u001b]0;/s/h/hx\u0007\u001b[30m\u001b(B\u001b[m\u001b[92mmichael\u001b(B\u001b[m@\u001b(B\u001b[mmango2\u001b(B\u001b[m \u001b[32m/s/h/hx\u001b(B\u001b[m (master)\u001b(B\u001b[m> \u001b[K\r\u001b[72C\u001b[1;32mnix-shell-env\u001b[0m \u001b[38;2;85;85;85m11:12:10\u001b(B\u001b[m\r\u001b[72C\r\u001b[33C"]
|
||||
[11.569994, "o", "\r\n"]
|
||||
[11.570056, "o", "\u001b[30m\u001b(B\u001b[m\u001b[30m\u001b(B\u001b[m"]
|
||||
[11.570221, "o", "\u001b[?2004l"]
|
219
static/lsp-document-colors.cast
Normal file
219
static/lsp-document-colors.cast
Normal file
File diff suppressed because one or more lines are too long
195
static/viewport-locals-after.cast
Normal file
195
static/viewport-locals-after.cast
Normal file
File diff suppressed because one or more lines are too long
118
static/viewport-locals-before.cast
Normal file
118
static/viewport-locals-before.cast
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user