Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Calculate offset when moving picker cursor | Kevin Sjöberg | 2021-06-06 |
| | |||
* | Add a comment to `canonicalize_path` | Wojciech Kępka | 2021-06-06 |
| | |||
* | Add a TODO | Wojciech Kępka | 2021-06-06 |
| | |||
* | Create document if it doesn't exist on save | Wojciech Kępka | 2021-06-06 |
| | |||
* | Update build.yml | Blaž Hrastnik | 2021-06-06 |
| | |||
* | Add more coverage for CI | Ivan Tham | 2021-06-06 |
| | | | | Runs every day as cron. Add matrix for test, includes windows and macos. | ||
* | Do not move past number of matches | Kevin Sjöberg | 2021-06-06 |
| | |||
* | Return an error if we request an embedded file that does not exist. | Brian Dawn | 2021-06-06 |
| | | | | | This makes the load_runtime_file function behave like the non-embedded one. | ||
* | Add a smoke test around loading runtime files. | Brian Dawn | 2021-06-06 |
| | | | | This test makes sure we can read some amount of data from the runtime folder. | ||
* | Simplify the load_runtime_file code. | Brian Dawn | 2021-06-06 |
| | | | | Reduce the number of feature switches for the embed_runtime feature. | ||
* | Simplify creating pathbufs. | Brian Dawn | 2021-06-06 |
| | | | Co-authored-by: Ivan Tham <pickfire@riseup.net> | ||
* | Apply suggestions from code review | Brian Dawn | 2021-06-06 |
| | | | | Co-authored-by: Ivan Tham <pickfire@riseup.net> | ||
* | Make rust-embed optionally included based on the embed_runtime feature. | Brian Dawn | 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 | ||
* | changed flag in build_cpp '/std:c++14' to '/std:c++17' due to ↵ | Jan Hrastnik | 2021-06-06 |
| | | | | tree_sitter_haskell not compiling on msvc without it | ||
* | 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` | ||
* | syntax: Use a different C++ flag for MSVC | Blaž Hrastnik | 2021-06-05 |
| | |||
* | Add unreachable context | Ivan Tham | 2021-06-05 |
| | | | Better error for #123 | ||
* | Better link to Matrix | Blaž Hrastnik | 2021-06-05 |
| | |||
* | Don't panic on empty file/buffer (#108) | notoria | 2021-06-05 |
| | |||
* | Fixing Multiple Panics (#121) | Kirawi | 2021-06-05 |
| | | | | | | | * init * wip * wip | ||
* | Address clippy lint | Blaž Hrastnik | 2021-06-05 |
| | |||
* | 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 | ||
* | syntax: Build C++ grammars as c++14 | Blaž Hrastnik | 2021-06-05 |
| | | | | | | The haskell grammar requires at last c++14 to build. Fixes #117 | ||
* | syntax: Disable explicit debug/opt_level passing | Blaž Hrastnik | 2021-06-05 |
| | | | | | | cc-rs will already do the right thing and figure out the flags. Fixes #34 | ||
* | Restored haskell syntax | Corey Powell | 2021-06-04 |
| | | | | It seems to work | ||
* | Rust: Highlight crate namespace, categorize `mut` | notoria | 2021-06-04 |
| | |||
* | 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 |
| | |||
* | Rust: Add keyword `async`, match the entire macro | notoria | 2021-06-04 |
| | |||
* | Remove swapfile | notoria | 2021-06-04 |
| | |||
* | Convert byte index to char index for `find` | notoria | 2021-06-04 |
| | |||
* | Remove select_all implementation | Egor Karavaev | 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. | ||
* | Fix undo redo | Ivan Tham | 2021-06-03 |
| | | | | | | I missed the fast return. Fix #89 | ||
* | update keymap.md to include arrow keys for movement | Antoni Stevent | 2021-06-03 |
| | |||
* | 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 |
| |