Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Extract jump_to_location | Blaž Hrastnik | 2022-02-18 | |
| | ||||
* | Extract a common "language server or return" macro | Blaž Hrastnik | 2022-02-18 | |
| | ||||
* | Extract a helper function for lsp::Location | Blaž Hrastnik | 2022-02-18 | |
| | ||||
* | Move most LSP specific commmands to commands::lsp | Blaž Hrastnik | 2022-02-18 | |
| | ||||
* | dap: fix runInTerminal with lldb-vscode | Blaž Hrastnik | 2022-02-18 | |
| | ||||
* | Refactor symbol picker to share code | Blaž Hrastnik | 2022-02-18 | |
| | ||||
* | filter git revision on git command success exit code (#1674) | Michael Davis | 2022-02-18 | |
| | | | | | | | | | | | | | | 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]). | |||
* | Fix bug when launching hx file.rs:10 (#1676) | tomKPZ | 2022-02-18 | |
| | ||||
* | feat(commands): command palette (#1400) | Matouš Dzivjak | 2022-02-17 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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> | |||
* | Manually recalculate initial completion where it matters | Blaž Hrastnik | 2022-02-17 | |
| | ||||
* | Pass through Editor instead of Context | Blaž Hrastnik | 2022-02-17 | |
| | ||||
* | WIP: show all buffers that couldn't be closed | Cole Helbling | 2022-02-17 | |
| | ||||
* | helix-term: implement buffer completer | Cole Helbling | 2022-02-17 | |
| | | | | | | 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). | |||
* | helix-term/commands: display buffer id in picker | Cole Helbling | 2022-02-17 | |
| | ||||
* | Allow static strings in set_status/set_error so API is nicer | Blaž Hrastnik | 2022-02-15 | |
| | ||||
* | dap: Reduce amount of block_on uses | Blaž Hrastnik | 2022-02-15 | |
| | ||||
* | Add tree-sitter based function, class navigation | Gokul Soumya | 2022-02-15 | |
| | ||||
* | .. | Blaž Hrastnik | 2022-02-15 | |
| | ||||
* | Fix build on master | Blaž Hrastnik | 2022-02-15 | |
| | ||||
* | Add `PageUp`, `PageDown`, `Ctrl-u`, `Ctrl-d`, `Home`, `End` keyboard ↵ | Ludwig Stecher | 2022-02-15 | |
| | | | | | | | | | | | | | | | 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 | |||
* | use PathBuf::to_string_lossy() instead of to_str() (#1655) | Kirawi | 2022-02-15 | |
| | ||||
* | Refactor language config loading (#1658) | Gokul Soumya | 2022-02-14 | |
| | ||||
* | Mark DAP as experimental | Blaž Hrastnik | 2022-02-13 | |
| | ||||
* | Merge remote-tracking branch 'origin/master' into debug | Blaž Hrastnik | 2022-02-13 | |
|\ | ||||
| * | postpone clone after found (#1656) | Cydiater | 2022-02-13 | |
| | | ||||
| * | Instant is more suitable than SystemTime for spinners | Blaž Hrastnik | 2022-02-10 | |
| | | ||||
| * | Replace tendril with smartstring | Blaž Hrastnik | 2022-02-10 | |
| | | | | | | | | Slightly smaller API surface, less dependencies. | |||
| * | feat(editor): add config for search wrap_around (#1516) | Matouš Dzivjak | 2022-02-10 | |
| | | | | | | | | | | | | | | | | | | * 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 | |||
| * | Show infobox with register contents | Gokul Soumya | 2022-02-10 | |
| | | ||||
| * | Prevent multiple code action popups | Gokul Soumya | 2022-02-08 | |
| | | ||||
| * | Preselect first item in code action popup menu | Gokul Soumya | 2022-02-08 | |
| | | ||||
| * | Replace if let with early return | Gokul Soumya | 2022-02-08 | |
| | | ||||
| * | Update dependencies (crossterm 0.23, tree-sitter 0.20.4) | Blaž Hrastnik | 2022-02-07 | |
| | | | | | | | | Fixes #677 | |||
| * | fix: There is no such thing as markup.normal, use ui.text | Blaž Hrastnik | 2022-02-07 | |
| | | ||||
| * | Don't use block_on in jobs.finish(), we can .await | Blaž Hrastnik | 2022-02-05 | |
| | | ||||
| * | fix: Only parse git revision, don't use the tag for version | Blaž Hrastnik | 2022-02-02 | |
| | | | | | | | | | | | | If building from source and the source is contained in a larger repository, we'd contain the wrong version. It's also easy to accidentally have a newer tag that would change the version. | |||
| * | ui: menu: Don't allocate scrollbar space if options fit | Blaž Hrastnik | 2022-01-31 | |
| | | ||||
| * | ui: Only render menu scrollbar if it doesn't fit | Blaž Hrastnik | 2022-01-31 | |
| | | ||||
| * | Render code actions as a menu, allow adding padding to popup | Blaž Hrastnik | 2022-01-31 | |
| | | ||||
| * | Improve code action picker by displaying it inline | Blaž Hrastnik | 2022-01-31 | |
| | | ||||
| * | Stop collecting highlight_iter events then turning back into iter | Blaž Hrastnik | 2022-01-30 | |
| | | ||||
| * | Remove some unnecessary clippy tags | Blaž Hrastnik | 2022-01-30 | |
| | | ||||
| * | Automatically commit changes to history if not in insert mode | Blaž Hrastnik | 2022-01-30 | |
| | | | | | | | | Fixes #1500 | |||
| * | Use markup scopes for the Markdown component (#1363) | CossonLeo | 2022-01-24 | |
| | | ||||
| * | Fix picker won't scroll down when it hits the bottom #1544 (#1567) | Benjamin | 2022-01-23 | |
| | | ||||
| * | Allow specifying file start position (#445) | Ivan Tham | 2022-01-23 | |
| | | | | | | Like helix-term/src/commands.rs:3426:15 | |||
| * | Merge pull request #1154 from sudormrfbin/cursor-shape-new | Blaž Hrastnik | 2022-01-23 | |
| |\ | | | | | | | Change cursor shape on mode change | |||
| | * | Merge branch 'master' into cursor-shape-new | Gokul Soumya | 2022-01-09 | |
| | |\ | ||||
| | * \ | Merge branch 'master' into cursor-shape-new | Gokul Soumya | 2022-01-06 | |
| | |\ \ | ||||
| | * | | | Manually draw all block cursors | Gokul Soumya | 2021-12-23 | |
| | | | | |