Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | fix(commands): don't indent empty lines (#1653) | Matouš Dzivjak | 2022-02-25 | |
| | | | | | | | | | | | | | * fix(commands): don't indent empty lines Fixes: https://github.com/helix-editor/helix/issues/1642 * Apply suggestions * Update helix-term/src/commands.rs * Update helix-term/src/commands.rs Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> | |||
* | Configurable auto pairs (#1624) | Skyler Hawthorne | 2022-02-25 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * impl auto pairs config Implements configuration for which pairs of tokens get auto completed. In order to help with this, the logic for when *not* to auto complete has been generalized from a specific hardcoded list of characters to simply testing if the next/prev char is alphanumeric. It is possible to configure a global list of pairs as well as at the language level. The language config will take precedence over the global config. * rename AutoPair -> Pair * clean up insert_char command * remove Rc * remove some explicit cloning with another impl * fix lint * review comments * global auto-pairs = false takes precedence over language settings * make clippy happy * print out editor config on startup * move auto pairs accessor into Document * rearrange auto pair doc comment * use pattern in Froms | |||
* | Fix 1.60 lints | Blaž Hrastnik | 2022-02-25 | |
| | ||||
* | Use which to resolve lsp/dap binaries | Blaž Hrastnik | 2022-02-24 | |
| | | | | This resolves the following issue: https://github.com/helix-editor/helix/discussions/962#discussioncomment-1580046 | |||
* | Close some popups automatically (#1285) | Bram | 2022-02-23 | |
| | | | | | | | | | | | | | | | | | | | * Add Event::Used to use event callback without consuming * Close popup if contents ignored event * collect event results before executing callbacks * don't add new result variant, use Ignored(..) instead * break in match cases * Make auto_close configurable * fix merge * auto close hover popups * fix formatting | |||
* | fix: ui: Markdown popups stopped taking vertical padding into account | Blaž Hrastnik | 2022-02-21 | |
| | | | | Fix #1688 | |||
* | Simplify some code | Blaž Hrastnik | 2022-02-21 | |
| | ||||
* | Allow separate styles for markup headings (#1618) | Alex | 2022-02-21 | |
| | | | | | * update markdown highlighting to use separate heading themes * remove markdown theme scopes in ui | |||
* | Always ignore the .git directory in file picker (#1604) | Daniel S Poulin | 2022-02-20 | |
| | | | | | 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. | |||
* | ui: prompt: Render aliases + border on the doc | Blaž Hrastnik | 2022-02-20 | |
| | ||||
* | fix: Allow multi-line prompt documentation | Blaž Hrastnik | 2022-02-20 | |
| | ||||
* | Extract a lsp position helper | Blaž Hrastnik | 2022-02-18 | |
| | ||||
* | Extract some duplication in lsp goto_ calls | Blaž Hrastnik | 2022-02-18 | |
| | ||||
* | 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 | |
| | ||||
* | 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 | |
| | | ||||
| * | 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 | |
| | | ||||
| * | 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 | |
| | |