Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | 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 | |
| | ||||
* | Clean up leftover log. | Jakub Bartodziej | 2021-06-03 | |
| | ||||
* | Improve on the fix for deleting from the end of the buffer. | Jakub Bartodziej | 2021-06-03 | |
| | ||||
* | Disable deleting from an empty buffer which can cause a crash. | Jakub Bartodziej | 2021-06-03 | |
| | ||||
* | key is now modified in place at start of handle_event | Jan Hrastnik | 2021-06-03 | |
| | ||||
* | key_canonicalization now only matches chars | Jan Hrastnik | 2021-06-03 | |
| | ||||
* | put the key canonicalization in a seperate function. only chars now get ↵ | Jan Hrastnik | 2021-06-03 | |
| | | | | stripped of Shift modifier | |||
* | removed shift matching | Jan Hrastnik | 2021-06-03 | |
| | ||||
* | Highlight matching brackets | notoria | 2021-06-03 | |
| | ||||
* | Fix cursor not showing on (0, 0) | Blaž Hrastnik | 2021-06-03 | |
| | ||||
* | Default log file to cache | Ivan Tham | 2021-06-03 | |
| | ||||
* | Merge pull request #66 from IceDragon200/replaced-args-parser | Blaž Hrastnik | 2021-06-03 | |
|\ | | | | | Drop pico-args in favour of a hand rolled parser | |||
| * | Refactored parse_args loop | Corey Powell | 2021-06-02 | |
| | | | | | | | | Thanks @PabloMansanet | |||
| * | Dropped pico-args in favour of a simpler hand roller parser | Corey Powell | 2021-06-02 | |
| | | | | | | | | Not the greatest looking, but it gets the job done | |||
* | | Clippy lint | Blaž Hrastnik | 2021-06-03 | |
| | | ||||
* | | Fix split sizes getting out of sync with the terminal size, refs #69 | Blaž Hrastnik | 2021-06-03 | |
|/ | ||||
* | Merge pull request #57 from pickfire/fix-panic | Corey Powell | 2021-06-02 | |
|\ | | | | | Fix panic opening rust file | |||
| * | Fix panic opening rust file | Ivan Tham | 2021-06-02 | |
| | | | | | | | | Application::new will use stuff that requires tokio runtime. | |||
* | | Merge pull request #55 from helix-editor/autoresize | Blaž Hrastnik | 2021-06-02 | |
|\ \ | |/ |/| | autoresize terminal in compositor render | |||
| * | autoresize terminal in compositor render | Jan Hrastnik | 2021-06-02 | |
| | | ||||
* | | Use config_dir for logging, create config_dir | Wojciech Kępka | 2021-06-02 | |
| | | ||||
* | | Support ctrl-f and ctrl-b to page up/down, fixes #41 | Blaž Hrastnik | 2021-06-02 | |
| | | ||||
* | | Fix empty command cause panic | Daichi Takamiya | 2021-06-02 | |
| | | ||||
* | | Improve errors handling in main by adding context | Danilo Spinella | 2021-06-01 | |
|/ | | | | | Return a anyhow::Result in main function so that Context can be used there too. | |||
* | Allow setting a filepath on :write | Blaž Hrastnik | 2021-06-01 | |
| | ||||
* | Change help prompt styling | Blaž Hrastnik | 2021-06-01 | |
| |