lp:my-second-project

Owned by Evgenii
Get this repository:
git clone https://git.launchpad.net/my-second-project

Import details

Import Status: Reviewed

This repository is an import of the Git repository at https://github.com/helix-editor/helix.git.

The next import is scheduled to run .

Last successful import was .

Import started on juju-98ee42-prod-launchpad-codeimport-0 and finished taking 19 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 10 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 10 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 10 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 4 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 9 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-2 and finished taking 49 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 10 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 10 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-0 and finished taking 28 minutes — see the log

Repository scan failed

Scanning this repository for changes failed. You can manually rescan if required.

Branches

Name Last Modified Last Commit
expand-stdx-rope-unicode 2025-06-11 15:54:24 UTC
stdx: Add an iterator over grapheme indices in a rope slice

Author: Michael Davis
Author Date: 2025-06-11 14:37:11 UTC

stdx: Add an iterator over grapheme indices in a rope slice

gh-pages 2025-06-11 14:00:57 UTC
deploy: 3b7aaddb1391a9e343877ceadb83a41c95ede33f

Author: the-mikedavis
Author Date: 2025-06-11 14:00:57 UTC

deploy: 3b7aaddb1391a9e343877ceadb83a41c95ede33f

master 2025-06-11 14:00:46 UTC
feat: add neocmakelsp language server (#13740)

Author: idealseal
Author Date: 2025-06-11 14:00:46 UTC

feat: add neocmakelsp language server (#13740)

diagnostic-severity-glyphs 2025-06-10 15:49:32 UTC
Use separate glyphs for hint/info/warning/error diagnostic indicators

Author: Michael Davis
Author Date: 2025-04-08 20:06:33 UTC

Use separate glyphs for hint/info/warning/error diagnostic indicators

Currently all diagnostics use '●' as an indicator. This can be hard to
distinguish at a glance, especially if you are colorblind and/or the
theme doesn't distinguish much between `warning` and `error` styles
for example. We should split these out into separate simple shapes so
each severity is easy to recognize.

bump_imara_diff 2025-06-09 15:32:45 UTC
update imara-diff

Author: Pascal Kuthe
Author Date: 2025-06-09 15:17:27 UTC

update imara-diff

ropey2 2025-06-07 13:06:21 UTC
wip core

Author: Michael Davis
Author Date: 2025-06-06 22:39:24 UTC

wip core

changelog 2025-06-07 02:56:40 UTC
.

Author: Michael Davis
Author Date: 2025-06-07 02:56:40 UTC

.

word-completion 2025-05-14 14:23:13 UTC
Add a very small owned string type for the word index

Author: Michael Davis
Author Date: 2025-03-25 17:26:34 UTC

Add a very small owned string type for the word index

`TinyBoxedStr` is a small-string optimized replacement for `Box<str>`
styled after <https://cedardb.com/blog/german_strings/>. A nearly
identical type is used in helix-editor/spellbook for space savings.

This type is specialized for its use-case:

* strings are immutable after creation
* strings are very very small (less than 256 bytes long)

Because of these attributes we can use nearly the full size of the type
for the inline representation and also keep a small total size. Many
other small string crates in the wild are 3 `usize`s long (same as a
regular `String`) to support mutability. This type is more like a
`Box<str>` (2 `usize`s long).

Mostly I like this small string type though because it's very
straightforward to implement. Other than a few functions that reach into
`std::alloc` or `std::ptr`, the code is short and boring.

rainbow 2025-05-13 23:58:14 UTC
Add docs

Author: Michael Davis
Author Date: 2025-03-27 15:07:58 UTC

Add docs

termina 2025-05-11 16:53:31 UTC
Remove `Backend::get_cursor`

Author: Michael Davis
Author Date: 2025-04-10 18:05:14 UTC

Remove `Backend::get_cursor`

It is unused and cannot be used on some terminal hosts like `conhost`
that do not respond to VT queries. This doesn't have any affect on
behavior - I'm removing it so that we don't rely on it in the future.

inlay-hints-on-event-system 2025-03-27 14:51:39 UTC
Move LSP inlay hints to the event system

Author: Michael Davis
Author Date: 2025-03-04 15:56:14 UTC

Move LSP inlay hints to the event system

spellbook 2025-03-24 13:17:43 UTC
WIP: The proper Spellbook integration patch

Author: Michael Davis
Author Date: 2025-03-21 00:52:51 UTC

WIP: The proper Spellbook integration patch

Prior integration patches went about it in the most simple and direct
way, which is unfortunately completely different than how it _should_
look. Some bad prior art:

* Checking was done during each render only on the current viewport
* Dictionary loading was hard-coded and done during `Editor::new`
* The UX for suggestions was not hooked into code actions
* Same for "Add {word} to dictionary"

Ultimately this is still very unbaked. Big parts still to do:

* Run a tree-sitter query to discover parts of the document that need to
  be checked. Look at the queries used in Codebook - I believe we want
  to follow that strategy at least partially. It uses different captures
  to control the strategy used to parse the captured content. (For
  example capturing strings)
* Support multiple dictionaries at once. Not totally sure what this
  looks like yet, other than `dictionaries.iter().any(..)`.
* Figure out how many configuration levers we need. Again, Codebook is
  likely to be good inspiration here.

syntax-symbol-pickers 2025-02-20 14:47:14 UTC
Rust symbol queries (#12859)

Author: eh
Author Date: 2025-02-20 14:47:14 UTC

Rust symbol queries (#12859)

string-lsp-url 2024-12-20 18:33:47 UTC
Remove unused Result wrapper for Path->Url conversion

Author: Michael Davis
Author Date: 2024-12-20 17:04:36 UTC

Remove unused Result wrapper for Path->Url conversion

batteries 2024-12-08 03:30:10 UTC
Merge branch 'incomplete_completion' into batteries

Author: Pascal Kuthe
Author Date: 2024-12-08 03:30:10 UTC

Merge branch 'incomplete_completion' into batteries

helix_syntax 2024-07-27 13:43:44 UTC
tmp

Author: Pascal Kuthe
Author Date: 2024-07-27 13:43:44 UTC

tmp

register-history 2024-07-15 18:27:23 UTC
Add 'select_register_history' command to pull items from history

Author: Michael Davis
Author Date: 2024-04-26 21:24:58 UTC

Add 'select_register_history' command to pull items from history

append-changes-ensure-cursor-automatically 2024-04-24 12:08:48 UTC
Append changes to history before & after each command

Author: Michael Davis
Author Date: 2024-02-18 20:30:30 UTC

Append changes to history before & after each command

Related to <https://redirect.github.com/helix-editor/helix/pull/7226>

allowlist 2024-02-06 07:03:59 UTC
Refactor config loading

Author: =?utf-8?q?Bla=C5=BE_Hrastnik?=
Author Date: 2024-02-06 07:03:59 UTC

Refactor config loading

Co-authored-by: Michael Davis <mcarsondavis@gmail.com>

config_refactor 2024-01-16 13:44:53 UTC
replace serde structs with helix-config toml adapter

Author: Pascal Kuthe
Author Date: 2024-01-16 13:26:03 UTC

replace serde structs with helix-config toml adapter

get-lang-config-by-injection-layer 2024-01-11 19:34:12 UTC
Add a function for getting language config by injection layer

Author: Michael Davis
Author Date: 2024-01-11 19:32:16 UTC

Add a function for getting language config by injection layer

md-compositor-key-remapping-idea 2023-06-25 19:45:21 UTC
WIP explore more commands on generic types

Author: Michael Davis
Author Date: 2023-06-25 19:32:29 UTC

WIP explore more commands on generic types

fix-yaml-indents-debug 2023-04-27 13:57:53 UTC
wip

Author: Skyler Hawthorne
Author Date: 2023-04-27 13:57:53 UTC

wip

help-command 2022-12-13 03:41:31 UTC
Add a document for the runtime directory

Author: Michael Davis
Author Date: 2022-12-13 03:38:30 UTC

Add a document for the runtime directory

This help topic should otherwise belong under `runtime/help/topics`
but it should be accessible if the runtime directory is not correctly
installed.

This article shows up under `:help topics` because of the symlink
but can also be accessed by `:help runtime` if necessary.

gui 2022-05-01 02:41:17 UTC
fix build

Author: =?utf-8?q?Bla=C5=BE_Hrastnik?=
Author Date: 2022-05-01 02:36:38 UTC

fix build

termwiz 2022-03-16 06:17:16 UTC
Port to termwiz: compiles but no rendering yet

Author: =?utf-8?q?Bla=C5=BE_Hrastnik?=
Author Date: 2021-06-14 02:44:23 UTC

Port to termwiz: compiles but no rendering yet

set-title 2021-10-24 07:52:38 UTC
Set terminal title to currently focused file

Author: =?utf-8?q?Bla=C5=BE_Hrastnik?=
Author Date: 2021-10-24 07:52:38 UTC

Set terminal title to currently focused file

127 of 27 results
This repository contains Public information 
Everyone can see this information.

Subscribers