Alex
d5ba0b5162
Allow separate styles for markup headings ( #1618 )
...
* update markdown highlighting to use separate heading themes
* remove markdown theme scopes in ui
3 years ago
Daniel S Poulin
700058f433
Always ignore the .git directory in file picker ( #1604 )
...
Some users (including myself) want to turn off filtering of files
prefixed with `.`, as they are often useful to edit. For example, `.env`
files, configuration for linters `.eslint.json` and the like.
3 years ago
Blaž Hrastnik
c7b326be04
ui: prompt: Render aliases + border on the doc
3 years ago
Blaž Hrastnik
2af04325d8
fix: Allow multi-line prompt documentation
3 years ago
Blaž Hrastnik
a449156702
Extract a lsp position helper
3 years ago
Blaž Hrastnik
5af9136aec
Extract some duplication in lsp goto_ calls
3 years ago
Blaž Hrastnik
1cd710fe01
Extract jump_to_location
3 years ago
Blaž Hrastnik
4e845409b6
Extract a common "language server or return" macro
3 years ago
Blaž Hrastnik
c06155ace4
Extract a helper function for lsp::Location
3 years ago
Blaž Hrastnik
504d5ce8bd
Move most LSP specific commmands to commands::lsp
3 years ago
Blaž Hrastnik
7b1d682fe5
dap: fix runInTerminal with lldb-vscode
3 years ago
Blaž Hrastnik
4e1b3b12f3
Refactor symbol picker to share code
3 years ago
Michael Davis
a8cf0c6b90
filter git revision on git command success exit code ( #1674 )
...
The unwrap (or '.ok()' rather) triggers for some errors but not
negative status codes. In the case where helix is being packaged
in an empty git repository, the existing mechanism will fail because
git init
git rev-parse HEAD
gives a negative exit code and prints to stderr
stderr: "fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree....
with a stdout of "HEAD\n" (too short to slice with [..8]).
3 years ago
tomKPZ
368064e316
Fix bug when launching hx file.rs:10 ( #1676 )
3 years ago
Matouš Dzivjak
afec54485a
feat(commands): command palette ( #1400 )
...
* feat(commands): command palette
Add new command to display command pallete that can be used
to discover and execute available commands.
Fixes: https://github.com/helix-editor/helix/issues/559
* Make picker take the whole context, not just editor
* Bind command pallete
* Typable commands also in the palette
* Show key bindings for commands
* Fix tests, small refactor
* Refactor keymap mapping, fix typo
* Ignore sequence key bindings for now
* Apply suggestions
* Fix lint issues in tests
* Fix after rebase
Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
3 years ago
Blaž Hrastnik
24f90ba8d8
Manually recalculate initial completion where it matters
3 years ago
Blaž Hrastnik
af21e2a5b4
Pass through Editor instead of Context
3 years ago
Cole Helbling
e023a78919
WIP: show all buffers that couldn't be closed
3 years ago
Cole Helbling
6118486eb2
helix-term: implement buffer completer
...
In order to implement this completer, the completion function needs to
be able to access the compositor's context (to allow it to get the
list of buffers currently open in the context's editor).
3 years ago
Cole Helbling
a1207fd768
helix-term/commands: display buffer id in picker
3 years ago
Blaž Hrastnik
d11b652139
Allow static strings in set_status/set_error so API is nicer
3 years ago
Blaž Hrastnik
fd0e4b1159
dap: Reduce amount of block_on uses
3 years ago
David Crespo
a629343476
Fix hover menu item text color in base16 themes ( #1668 )
...
* fix hover menu item text in base16 dark
* same ix for base16_default_light and base16_terminal
3 years ago
Gokul Soumya
ab2a0f325b
Add object.movement for tree-sitter navigation
3 years ago
Gokul Soumya
989407f190
Add docs for tree-sitter based navigation
3 years ago
Gokul Soumya
966fbc5984
Add tree-sitter based function, class navigation
3 years ago
Blaž Hrastnik
1422449537
..
3 years ago
Blaž Hrastnik
eeb9b39857
Fix build on master
3 years ago
Ludwig Stecher
4429993842
Add `PageUp`, `PageDown`, `Ctrl-u`, `Ctrl-d`, `Home`, `End` keyboard shortcuts to file picker ( #1612 )
...
* Add `PageUp`, `PageDown`, `Ctrl-u`, `Ctrl-d`, `Home`, `End` keyboard shortcuts to file picker
* Refactor file picker paging logic
* change key mapping
* Add overlay component
* Use closure instead of margin to calculate size
* Don't wrap file picker in `Overlay` automatically
3 years ago
Kirawi
23907a063c
use PathBuf::to_string_lossy() instead of to_str() ( #1655 )
3 years ago
Michael Davis
3a83a764e3
add tree-sitter-erlang ( #1657 )
3 years ago
Blaž Hrastnik
8a7aec6414
fix: nix flake build
3 years ago
dependabot[bot]
225484c26c
build(deps): bump serde_json from 1.0.78 to 1.0.79 ( #1667 )
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.78 to 1.0.79.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.78...v1.0.79 )
---
updated-dependencies:
- dependency-name: serde_json
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>
3 years ago
Gokul Soumya
4c424d5ee4
Refactor language config loading ( #1658 )
3 years ago
CossonLeo
e267dc834a
Makefile indent must be '\t' ( #1661 )
3 years ago
Gokul Soumya
59acee308d
Add new dap commands to docs ( #1660 )
3 years ago
Blaž Hrastnik
97d4b2b5fe
Mark DAP as experimental
3 years ago
Blaž Hrastnik
bd549d8a20
Merge remote-tracking branch 'origin/master' into debug
3 years ago
Cydiater
7083b98a38
postpone clone after found ( #1656 )
3 years ago
Maximilian Schoenenberg
a19a6ca01e
Added docs for `ensure_selections_forward` ( #1651 )
3 years ago
Blaž Hrastnik
1bcb624ae6
Instant is more suitable than SystemTime for spinners
3 years ago
Blaž Hrastnik
f88c077f99
Replace tendril with smartstring
...
Slightly smaller API surface, less dependencies.
3 years ago
Matouš Dzivjak
fdb9a1677b
feat(editor): add config for search wrap_around ( #1516 )
...
* feat(editor): add config for search wrap_around
Fixes: https://github.com/helix-editor/helix/issues/1489
* Move search settings into separate config
* Disable linter
3 years ago
Gokul Soumya
59b5bf3178
Refactor document methods
3 years ago
Gokul Soumya
fa83426011
Handle newlines in register infobox
3 years ago
Gokul Soumya
bf773db451
Show infobox with register contents
3 years ago
Gokul Soumya
5995568c1d
Prevent multiple code action popups
3 years ago
Gokul Soumya
547c3ecd0c
Preselect first item in code action popup menu
3 years ago
Gokul Soumya
e90276df0b
Replace if let with early return
3 years ago
Gokul Soumya
f0cd02d5ef
Update keybind docs for treesitter, view mode ( #1628 )
3 years ago