Pascal Kuthe
e6cdc5f9d3
Don't use word splitting during fuzzy matching ( #8192 )
1 year ago
Pascal Kuthe
0cfd46c14f
Do not show (running) when opening picker ( #8148 )
...
* only stream from background thread if necessary
If the file transversal is longer shorter 30ms it will now be performed
on the main thread. Spawning a thread can take a while (or rather it
takes a while until that thread is scheduled) so the files can actually
take a while to show up. This prevents the `(running)` indicator from
briefly showing up when opening the file picker in a small directory.
* run partial cargo update
1 year ago
Jonathan LEI
8778083b5a
Detect tmux clipboard provider on macOS ( #8182 )
1 year ago
Evan Richter
c680721aae
flake: add Security apple framework
...
Now steel can be built with this Nix devshell
1 year ago
dependabot[bot]
48b7520bca
build(deps): bump actions/checkout from 3 to 4 ( #8173 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
65c3cca3cc
build(deps): bump serde_json from 1.0.104 to 1.0.105 ( #8177 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
4dbdcaebba
build(deps): bump regex from 1.9.4 to 1.9.5 ( #8175 )
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.9.4 to 1.9.5.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.9.4...1.9.5 )
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
761cdf124a
build(deps): bump serde from 1.0.185 to 1.0.188 ( #8176 )
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.185 to 1.0.188.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.185...v1.0.188 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
10e7ca819b
build(deps): bump cachix/install-nix-action from 22 to 23 ( #8172 )
...
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action ) from 22 to 23.
- [Release notes](https://github.com/cachix/install-nix-action/releases )
- [Commits](https://github.com/cachix/install-nix-action/compare/v22...v23 )
---
updated-dependencies:
- dependency-name: cachix/install-nix-action
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
9b397c9e68
build(deps): bump rustix from 0.38.8 to 0.38.11 ( #8174 )
...
Bumps [rustix](https://github.com/bytecodealliance/rustix ) from 0.38.8 to 0.38.11.
- [Release notes](https://github.com/bytecodealliance/rustix/releases )
- [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.8...v0.38.11 )
---
updated-dependencies:
- dependency-name: rustix
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
John Scarrott
61814fea7f
Nord Theme: Fix missing ui text focus, use undercurls for diagnostics ( #8165 )
1 year ago
Ivan Molodetskikh
9d7f66574d
Update tree-sitter-blueprint ( #8161 )
1 year ago
Lorenzo Bellina
e8fc77fe98
Maintain the current cursor's position and view in the vsplit/hsplit commands too ( #8109 )
...
Co-authored-by: Benjamin Bouvier <public@benj.me>
1 year ago
woojiq
bb3e6998e6
Fix find commands for buffers with non-LF line-endings ( #8111 )
1 year ago
Pascal Kuthe
a38ec6d6ca
avoid excessive memory consumption in picker ( #8127 )
...
* avoid excessive memory consumption from file picker
* fix typos
Co-authored-by: Chris <75008413+cd-a@users.noreply.github.com>
---------
Co-authored-by: Chris <75008413+cd-a@users.noreply.github.com>
1 year ago
Michael Davis
7cf775d512
Build flake packages with stable Rust ( #8133 )
...
We can continue to use the MSRV for local development and checks while
building release executables with the latest stable Rust, as we do in
CI.
1 year ago
Michael Davis
48373d4a2b
Clear completion when switching windows via click ( #8118 )
...
The completion component assumes that it operates on the same View but
it's possible to break this assumption by switching windows through
left-clicking. I believe we should clear the completion menu when
switching windows to fix this.
This change fixes a panic for this scenario:
* Open a buffer with LSP completion available
* Split the window (for example '<C-w>v')
* Enter insert mode and trigger the completion menu
* Select a completion candidate (for example with '<C-n>')
* Switch to the original window by left-clicking in its area
* Enter insert mode and make edits (for example 'o<backspace>')
This will trip the 'assert_eq' in Document::restore.
1 year ago
Michael Davis
a2767269d0
crossterm: Handle 'hidden' modifier ( #8120 )
...
Crossterm supports the 'hidden' SGR parameter but we previously didn't
set the attribute when the "hidden" modifier was specified in a theme.
1 year ago
Ezekiel Warren
6bef982f2d
use which on formatter command ( #8064 )
1 year ago
chtenb
7fffc0a5d1
Rename reset to default ( #8114 )
...
Use `default` instead of `reset`, as this is the conventional name for ANSI codes 39/49. The word `reset` should be reserved for ANSI code `0`, which resets both fg and bg colors at once, while also removing all modifiers. While the code uses the value name `Reset`, this is misleading and should not leak into the user space.
1 year ago
Pascal Kuthe
0cb595e226
transition to nucleo for fuzzy matching ( #7814 )
...
* transition to nucleo for fuzzy matching
* drop flakey test case
since the picker streams in results now any test that relies
on the picker containing results is potentially flakely
* use crates.io version of nucleo
* Fix typo in commands.rs
Co-authored-by: Skyler Hawthorne <skyler@dead10ck.com>
---------
Co-authored-by: Skyler Hawthorne <skyler@dead10ck.com>
1 year ago
mattwparas
cb93a68595
fix borrow mut error
1 year ago
Tanguy
40d7e6c9c8
Copy desktop and icon files to Nix output ( #7979 )
1 year ago
woojiq
b67d2c3a68
fix: line numbers remain relative when helix loses focus ( #7955 )
...
* fix: line numbers remain relative when helix loses focus
If `line number = relative` and a new window is opened in helix, lines inside unfocused windows will be `absolute`. This commit adds the same thing when helix becomes unfocused in a terminal emulator.
* partial rebase
1 year ago
West
82cd445715
add `reset` to the color palette ( #8083 )
1 year ago
dependabot[bot]
3ac2ac6dd6
build(deps): bump log from 0.4.19 to 0.4.20 ( #8103 )
...
Bumps [log](https://github.com/rust-lang/log ) from 0.4.19 to 0.4.20.
- [Release notes](https://github.com/rust-lang/log/releases )
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/log/compare/0.4.19...0.4.20 )
---
updated-dependencies:
- dependency-name: log
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
d71e58c1ba
build(deps): bump encoding_rs from 0.8.32 to 0.8.33 ( #8104 )
...
Bumps [encoding_rs](https://github.com/hsivonen/encoding_rs ) from 0.8.32 to 0.8.33.
- [Commits](https://github.com/hsivonen/encoding_rs/compare/v0.8.32...v0.8.33 )
---
updated-dependencies:
- dependency-name: encoding_rs
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
92652638be
build(deps): bump tokio from 1.31.0 to 1.32.0 ( #8105 )
...
Bumps [tokio](https://github.com/tokio-rs/tokio ) from 1.31.0 to 1.32.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.31.0...tokio-1.32.0 )
---
updated-dependencies:
- dependency-name: tokio
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
bcbad25e78
build(deps): bump regex from 1.9.3 to 1.9.4 ( #8106 )
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.9.3 to 1.9.4.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.9.3...1.9.4 )
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
mattwparas
e5e6c3bfd9
update readme
1 year ago
Damir Vandic
79c0425154
Sync latest catppuccin theme changes ( #8102 )
1 year ago
Michael Davis
072e1eae92
Update tree-sitter-gleam, enable auto-format ( #8085 )
1 year ago
sigmaSd
992c858369
chore: update strace tree sitter grammar ( #8087 )
1 year ago
Álan Crístoffer
9f843e4f56
highlight(matlab): bumps grammar after some improvements ( #8040 )
1 year ago
mattwparas
0eb0be55a3
slim down interfact even more
1 year ago
mattwparas
7d63468b83
cleanup
1 year ago
Sol Fisher Romanoff
aeaeb09f48
add gemini language support ( #8070 )
1 year ago
mattwparas
18fa67d157
more clean up
1 year ago
mattwparas
69302c26ab
some extra comments
1 year ago
mattwparas
279f5eddb3
add feature flag
1 year ago
mattwparas
81243247c6
nuke the dlopen stuff
1 year ago
mattwparas
f808fa083a
cut out more code
1 year ago
mattwparas
7b6e733892
remove dead code
1 year ago
mattwparas
768b483e40
more dead code
1 year ago
mattwparas
ecfce4cd06
clean up
1 year ago
mattwparas
7da809a780
fix borrow mut errors
1 year ago
mattwparas
67a5266da3
engine shouldn't panic when helix.scm file fails to load
1 year ago
David Else
c9694f680f
Add ltex-ls language server ( #7838 )
1 year ago
mattwparas
79f5b252d9
patch info
1 year ago
arslee07
75c5a33028
Highlight Dart 3 `sealed` and `base` keywords ( #7974 )
1 year ago