Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Add bounds checks to replace | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | commands: Replace all characters in selection | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | Make matching bracket dimmed, prevent out of bounds rendering | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | Cleanup find_first_non_whitespace_char funcs | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | commands: Add goto first non-whitespace char of line | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | Fix Unicode (#135) | Kirawi | 2021-06-08 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * init * wip * wip * fix unicode break * fix unicode break * Update helix-core/src/transaction.rs Co-authored-by: Benoît Cortier <benoit.cortier@fried-world.eu> * clippy * fix * add changes * added test * wip * wip * wip * wip * fix * fix view * fix #88 Co-authored-by: Benoît Cortier <benoit.cortier@fried-world.eu> | |||
* | Bump file picker limit | Kevin Sjöberg | 2021-06-08 | |
| | ||||
* | Update keymap | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | commands: Add replace with yanked as `R` | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | completion: Fix unimplemented autocomplete | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | ui: completion: Use the correct type_name | Blaž Hrastnik | 2021-06-07 | |
| | | | | Fixes #166 | |||
* | Create all parent directories for config and cache | Wojciech Kępka | 2021-06-07 | |
| | ||||
* | Make gh/gl extend selection in select mode | Blaž Hrastnik | 2021-06-07 | |
| | ||||
* | Address clippy lint | Blaž Hrastnik | 2021-06-07 | |
| | ||||
* | Disable failing doctest | Blaž Hrastnik | 2021-06-07 | |
| | ||||
* | Separate helix-term as a library | Ivan Tham | 2021-06-07 | |
| | | | | helix-term stuff will now be documented in rustdoc. | |||
* | Implement register selection | Benoît CORTIER | 2021-06-07 | |
| | | | | | | User can select register to yank into with the " command. A new state is added to `Editor` and `commands::Context` structs. This state is managed by leveraging a new struct `RegisterSelection`. | |||
* | lsp: Provide workspace root on client.initialize() | Blaž Hrastnik | 2021-06-07 | |
| | ||||
* | Revert the line number rendering change, we were correct before | Blaž Hrastnik | 2021-06-07 | |
| | ||||
* | Release 0.0.10 | Blaž Hrastnik | 2021-06-07 | |
| | ||||
* | View mode: Use saturating_sub when calculating first_col | Blaž Hrastnik | 2021-06-07 | |
| | ||||
* | commands: use chars().count() over .len() on strings | Blaž Hrastnik | 2021-06-07 | |
| | ||||
* | fix: 2 panics while setting style + off by 1 | ahkrr | 2021-06-07 | |
| | | | | | | | | | | | | The panics would occur because set_style would draw outside of the the surface. Both occured using `find_prev` or `till_prev` In my case the first panic! would appear in a terminal with around 80 columns in helix/README.md going to the end of the file with `geglf(` the second with `geglfX` The off by one fix ensures that `find_nth_prev` starts at the first character to the left | |||
* | Install instructions and version number corrections (#148) | Ethan Bodzioney | 2021-06-07 | |
| | | | | | | | | | | | | | | | | | | | * Add MacOS install instructions * Change version name argument When using the -V command to get the version you are given 'helix-term x.x.x', I changed this to just helix as it makes more sense. * Fixed version number * Fixed version number * Fixed version number * Fixed version number * Fixed version number * Fixed version number | |||
* | Add diagnostics keybindings | Wojciech Kępka | 2021-06-07 | |
| | ||||
* | Add spc w w for window mode | Ivan Tham | 2021-06-07 | |
| | ||||
* | Refactor index assignment | Kevin Sjöberg | 2021-06-06 | |
| | | | | Co-authored-by: Ivan Tham <pickfire@riseup.net> | |||
* | Allow moving backwards in completions | Kevin Sjöberg | 2021-06-06 | |
| | ||||
* | Trigger directory completion upon pressing Enter | Kevin Sjöberg | 2021-06-06 | |
| | ||||
* | Add ctrl-w in insert mode | Ivan Tham | 2021-06-06 | |
| | | | | | It seemed to panic when I pressed too many times, but that is from lsp side. | |||
* | Calculate offset when moving picker cursor | Kevin Sjöberg | 2021-06-06 | |
| | ||||
* | Do not move past number of matches | Kevin Sjöberg | 2021-06-06 | |
| | ||||
* | Provide a feature flag to be able to embed the runtime folder. | Brian Dawn | 2021-06-06 | |
| | | | | | | These changes provide a new feature flag "embed_runtime" that when enabled and built in release mode will embed the runtime folder into the resulting binary. | |||
* | Add window mode | Ivan Tham | 2021-06-06 | |
| | | | | Fix #93 | |||
* | fix: panicked at 'attempt to subtract with overflow' | ahkrr | 2021-06-05 | |
| | | | | helix-term/src/ui/editor.rs:275:29 This would happen when the window-size was to small to display the entire width and one would start jumping forwards with f<some_char> and the beginning of the highlighted area would end up outside of the window | |||
* | fix: make find_prev_char and till_prev_char work | ahkrr | 2021-06-05 | |
| | | | | | | Bevore this PR `commands::find_prev_char` and `commands::till_prev_char` were triggerable through keys but `seach::find_nth_next()` was hardcoded in `_find_char`. The passed `fn` was nerver used. With this PR the passed `fn` is used. The change in search.rs resolves an off by one error in the behivor of `find_nth_prev` | |||
* | Fixing Multiple Panics (#121) | Kirawi | 2021-06-05 | |
| | | | | | | | * init * wip * wip | |||
* | Add home-end keymaps, (as kakoune/vim do) (#83) | Antoni Stevenet | 2021-06-05 | |
| | | | | | | | | | | | * add home-end keymaps * implement extend methods for extend_line_start, extend_line_end * add home-end mappings to keymaps.md * add ^-$ extend mappings for extend mode * pass cargo linter | |||
* | Replace ^/$ with gh/gl | notoria | 2021-06-04 | |
| | ||||
* | Implement gt/gm/gb, remap goto tYpe to gy | Blaž Hrastnik | 2021-06-04 | |
| | ||||
* | matchbrackets: Needs to render with the viewport offset | Blaž Hrastnik | 2021-06-04 | |
| | ||||
* | scroll: Fix the clamping | Blaž Hrastnik | 2021-06-04 | |
| | ||||
* | Try to detect language when document file path is set | Blaž Hrastnik | 2021-06-04 | |
| | | | | Fixes #91 | |||
* | Exit select mode on delete_selection | Blaž Hrastnik | 2021-06-04 | |
| | ||||
* | Show file picker when directory passed as first arg | wojciechkepka | 2021-06-04 | |
| | ||||
* | Fix panic paint mysterious matching pair | Ivan Tham | 2021-06-04 | |
| | | | | | | When the matching pair is out of bounds it still paints it causing an out of bound panic. A dirty fix since it still have some issue, at least it does not panic now. | |||
* | Limit goto count | Kevin Sjöberg | 2021-06-03 | |
| | | | | | Giving a goto count greater than the number of lines in the buffer would cause Helix to panic. | |||
* | use correct _extend methods, also remove unnecessary casts | Antoni Stevent | 2021-06-03 | |
| | ||||
* | Add up/right/left/down arrow keymaps, similar to kakoune | Antoni Stevent | 2021-06-03 | |
| | ||||
* | Avoid theoretical underflow. | Jakub Bartodziej | 2021-06-03 | |
| |