Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Preview scratch buffers in jumplist picker (#7331) | A-Walrus | 2023-06-13 |
| | |||
* | Add rl and rla aliasses for reload and reload-all commands (#7158) | Zisulin Morbrot | 2023-06-13 |
| | |||
* | Add reverse_selection_contents (#7329) | Robert | 2023-06-13 |
| | |||
* | Fix underflow when repeating a completion that has a negative shift position ↵ | Philipp Mildenberger | 2023-06-12 |
| | | | | (#7322) | ||
* | fix: add file argument in help text (#7307) | 0xHiro / ヒロ | 2023-06-10 |
| | |||
* | add config option for instant completion entry preview (defaulting to true). | Luca Schlecker | 2023-06-09 |
| | | | | Signed-off-by: Luca Schlecker <luca.schlecker@hotmail.com> | ||
* | Add register statusline element (#7222) | spectre256 | 2023-06-08 |
| | |||
* | Auto indent on `insert_at_line_start` (#5837) | Alex | 2023-06-08 |
| | |||
* | Bail if no language servers support workspace symbols (#7286) | Michael Davis | 2023-06-08 |
| | |||
* | add move_prev_long_word_end and extend_prev_long_word_end (#6905) | vwkd | 2023-06-07 |
| | |||
* | Propagate the count and register to command palette commands | Michael Davis | 2023-06-07 |
| | | | | | | Previously a count or register selection would be lost while opening the command palette. This change allows using a register selection or count in any command chosen from the command palette. | ||
* | Persist register selection in pending keymaps | Michael Davis | 2023-06-07 |
| | | | | | | | | | | | | | | Previously the register selection (via `"`) would be lost in the middle of any key sequence longer than one key. For example, `<space>f` would clear the register selection after the `<space>` making it inaccessible for the `file_picker` command. This behavior does not currently have any effect in the default keymap but might affect custom keymaps. This change aligns the behavior of the register with count. Making this change allows propagating the register to the `command_palette` (see the child commit) or other pickers should we decide to use registers in those in the future. (Interactive global search for example.) | ||
* | commands(toggle): use pattern matching on the Value enum (#7240) | Alex Vinyals | 2023-06-07 |
| | |||
* | Remove Keymap(KeyTrie) and simply use KeyTrie. | gibbz00 | 2023-06-07 |
| | |||
* | Move `keymap.reverse_keymap()` to `Keytrie`: | gibbz00 | 2023-06-07 |
| | | | | The plan is let `Keymaps` simply store `KeyTrie`s, as the `Keymap(Keytrie)` wrapping serves little to no purpose. | ||
* | Remove pub keymap.name(); | gibbz00 | 2023-06-07 |
| | | | | `keymap.name` is only used internally. | ||
* | Place `Info::from_keymap()` contents in `keymap.infobox()`: | gibbz00 | 2023-06-07 |
| | | | | | This makes it easier later control the order in which the key events are presented. | ||
* | Keymap infobox: Idiomatic body tuple. | gibbz00 | 2023-06-07 |
| | | | | | | | Does not change any behavior other than making the tuple slightly more idiomatic. Keymap infobox shows key events, then the respective description. This commit makes sure that order is used from the get go, rather than flipping it midway. | ||
* | Exclude config no_op bindings in command palette. | gibbz00 | 2023-06-07 |
| | |||
* | Remove superfluous command description pruning for keymap infobox: | gibbz00 | 2023-06-07 |
| | | | | | Exist under the wrong (possibly just outdated) assumption that command descriptions are written with their `KeyTrie` name prefixed | ||
* | `helix_term::keymap`: Remove one-liner solely used for a test. | gibbz00 | 2023-06-07 |
| | |||
* | Make `Keymap` a tuple struct. | gibbz00 | 2023-06-07 |
| | |||
* | keymap: Rename KeyTrie::Leaf -> KeyTrie::MapppableCommand | gibbz00 | 2023-06-07 |
| | | | | The variant Sequence is technically also a leaf. | ||
* | keymap: Derive `Default` for KeyTrieNode | gibbz00 | 2023-06-07 |
| | |||
* | feat(core): add plaintext matching fallback to tree-sitter matching (#4288) | Alex Vinyals | 2023-06-05 |
| | |||
* | Exit gracefully on termination signals (#7236) | Michael Davis | 2023-06-05 |
| | |||
* | feat(commands): allows cycling option values at runtime (#4411) | Alex Vinyals | 2023-06-05 |
| | |||
* | fixed repeat_last_motion extends selection (#7159) | Ethan Wilkes | 2023-05-28 |
| | |||
* | Fix off-by-one in select symbol references (#7132) | Matthew Toohey | 2023-05-25 |
| | |||
* | Update diagnostics correctly on LSP exit (#7111) | Poliorcetics | 2023-05-23 |
| | | | | | | | * chore: avoid format! call with argument when useless * feat: also clear diagnostics for unopened documents when exiting an LSP * feat: we already worked on `self.editor.diagnostics` no need to redo the checks | ||
* | Add command to merge non-consecutive ranges (#7053) | Szabin | 2023-05-19 |
| | | | | | | | | | | | * Add command for merging non-consecutive ranges * Add `merge_selections` command to book * Simplify `merge_ranges` Heeded the advice of @the-mikedavis to stop iterating over all ranges and simply merge the first and the last range, as the invariants of `Selection` guarantee that the list of ranges is always sorted and never empty. * Clarify doc comment of `merge_ranges` | ||
* | Rebase cleanup/fixes and use lsp::CompletionItem in item_to_transaction directly | Philipp Mildenberger | 2023-05-18 |
| | |||
* | Apply all review suggestions (doc_id -> id, error message, unnecessary if) | Philipp Mildenberger | 2023-05-18 |
| | | | | Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de> | ||
* | Some minor clarity/cosmetic improvements | Philipp Mildenberger | 2023-05-18 |
| | | | | Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de> | ||
* | Add function `Editor::language_server_by_id` and refactor/simplify related ↵ | Philipp Mildenberger | 2023-05-18 |
| | | | | code, also don't 'crash' in completion menu if language_server somehow disappeared | ||
* | Fix lsp_restart across multiple different document scopes (language servers ↵ | Philipp Mildenberger | 2023-05-18 |
| | | | | weren't restarted, if not of the same scope id), and fix some smaller rebase issues | ||
* | Remove offset_encoding in CodeActionOrCommandItem, as it can be retrieved on ↵ | Philipp Mildenberger | 2023-05-18 |
| | | | | demand | ||
* | Filter language servers also by capabilities in ↵ | Philipp Mildenberger | 2023-05-18 |
| | | | | | | | | | `doc.language_servers_with_feature` * Add `helix_lsp::client::Client::supports_feature(&self, LanguageServerFeature)` * Extend `doc.language_servers_with_feature` to use this method as filter as well * Add macro `language_server_with_feature!` to reduce boilerplate for non-mergeable language server requests (like goto-definition) * Refactored most of the `find_map` code to use the either the macro or filter directly via `doc.language_servers_with_feature` | ||
* | Filter out already seen language servers in requests that can be sent to ↵ | Philipp Mildenberger | 2023-05-18 |
| | | | | multiple language servers (code-action, completion, symbol pickers) | ||
* | Use let else instead of variable and fix some error messages | Philipp Mildenberger | 2023-05-18 |
| | | | | Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de> | ||
* | Remove offset_encoding in CompletionItem | Philipp Mildenberger | 2023-05-18 |
| | |||
* | Refactor doc language servers to a HashMap, and the config to use a Vec to ↵ | Philipp Mildenberger | 2023-05-18 |
| | | | | retain order | ||
* | Remove symbol picker is_empty check | Philipp Mildenberger | 2023-05-18 |
| | |||
* | Simplify 'lsp_stop' command | Philipp Mildenberger | 2023-05-18 |
| | |||
* | Fix docgen and lsp-stop documentation | Philipp Mildenberger | 2023-05-18 |
| | |||
* | Remove boilerplate in the goto methods by generically composing functions | Philipp Mildenberger | 2023-05-18 |
| | |||
* | Add method doc.supports_language_server for better readability | Philipp Mildenberger | 2023-05-18 |
| | |||
* | Refactored doc.language_servers and doc.language_servers_with_feature to ↵ | Philipp Mildenberger | 2023-05-18 |
| | | | | | | return an iterator and refactor LanguageServerFeature handling to a HashMap (language server name maps to features) Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de> | ||
* | Use DoubleEndedIterator instead of collect to Vec for reversing | Philipp Mildenberger | 2023-05-18 |
| | | | | Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de> | ||
* | Fix error messages when no language server is available | Philipp Mildenberger | 2023-05-18 |
| | | | | Co-authored-by: Skyler Hawthorne <skyler@dead10ck.com> |