Commit Graph

2252 Commits (d6c3804ed8d81f00a98258fae9234c20453286a5)

Author SHA1 Message Date
mattwparas d6c3804ed8 use in memory representation of configuration 10 months ago
mattwparas 01996b2bec No more passing around the helix context for every function call 11 months ago
mattwparas 0b5501d175 clean up 1 year ago
mattwparas 4550faf50f fix build issues 1 year ago
mattwparas fbabc40930 merge with event system 1 year ago
mattwparas cc65e583f4 checkpoint before event system 1 year ago
mattwparas 30dba6a6de add one more keybinding 1 year ago
mattwparas 575046cacf merge from master 1 year ago
mattwparas c0fdbc1148 start theme api 1 year ago
Pascal Kuthe dbfa2a63fa
refactor completion and signature help using hooks 1 year ago
mattwparas 76de40c1ed have some comments on the global search 1 year ago
mattwparas 0b107d6f41 deprecate old keybinding scheme 1 year ago
Michael Davis 01e281ce10
markdown: Recognize `<code>` tags with attributes as code (#8397) 1 year ago
A-Walrus f520b16fca
Style Bold/Italic/Strikethrough markdown in docs (#8385)
* Style Bold/Italic/Strikthrough markdown in docs

* Flatten to single match
1 year ago
mattwparas baa753176a add more functions for document and editor api 1 year ago
dependabot[bot] 312c175aec
build(deps): bump indoc from 2.0.3 to 2.0.4 (#8329)
Bumps [indoc](https://github.com/dtolnay/indoc) from 2.0.3 to 2.0.4.
- [Release notes](https://github.com/dtolnay/indoc/releases)
- [Commits](https://github.com/dtolnay/indoc/compare/2.0.3...2.0.4)

---
updated-dependencies:
- dependency-name: indoc
  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] 53500f6ebd
build(deps): bump libc from 0.2.147 to 0.2.148 (#8327)
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.147 to 0.2.148.
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.147...0.2.148)

---
updated-dependencies:
- dependency-name: libc
  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 6a9d0b3c64 reverse keymap overlay 1 year ago
mattwparas db3e9ed31d Merge remote-tracking branch 'origin' into mwp-steel-integration 1 year ago
mattwparas 500963b1c5 clean up warnings 1 year ago
mattwparas 2d4bc31d54 reorganize top level to use precedence for multiple plugins 1 year ago
Pascal Kuthe 13d4463e41 correctly center items in picker preview 1 year ago
Pascal Kuthe e9d0bd7aef fix crash in picker preview for invalid ranges 1 year ago
Em Zhan 7090555dab
Add `insert-final-newline` config option (#8157)
Co-authored-by: Xalfer <64538944+Xalfer@users.noreply.github.com>
1 year ago
Pascal Kuthe 15f88ad7bf
Add hook/event system 1 year ago
Luke Halasy b959162ceb
Add tree-sitter-highlight-name command (#8170)
* adds treesitter-highlight-name command

* commit documentation changes

* moves the get_highlight_name function into core/syntax

* rename get_highlight_name function to get_highlight_for_node_at_position

* addresses pr comments: moves fn into helper fn, simplifies a lot

* commit updated documentation changes

* changes scope method to return &str so that callers can decide whether or not to own
1 year ago
Pascal Kuthe eb9c37844c
fix syntax highlights in dynamic picker (#8206) 1 year ago
Weiyuan Wu 8017bb2999
add redraw command (#6949)
Co-authored-by: Roberto Vidal <vidal.roberto.j@gmail.com>
1 year ago
Michael Davis c0fd8bc61b
Fix Clone definition for Injector (#8194) 1 year ago
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
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 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
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
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
mattwparas 0eb0be55a3 slim down interfact even more 1 year ago
mattwparas 7d63468b83 cleanup 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 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
mattwparas 5fbc086ccd add back missing command 1 year ago
mattwparas fe4d6ceb40 fix formatting 1 year ago
mattwparas 42c9997487 merge in master 1 year ago