Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Implement change_current_directory command | Lionel Flandrin | 2021-06-22 |
| | |||
* | minor: Remove old TODOs | Blaž Hrastnik | 2021-06-22 |
| | |||
* | Merge pull request #224 from helix-editor/line_ending_detection | Blaž Hrastnik | 2021-06-22 |
|\ | | | | | Line ending detection | ||
| * | Merge branch 'master' of github.com:helix-editor/helix into ↵ | Nathan Vegdahl | 2021-06-20 |
| |\ | | | | | | | | | | | | | | | | | | | line_ending_detection Rebasing was making me manually fix conflicts on every commit, so merging instead. | ||
| * | | Work on moving code over to LineEnding instead of assuming '\n'. | Nathan Vegdahl | 2021-06-20 |
| | | | | | | | | | | | | Also some general cleanup and some minor fixes along the way. | ||
| * | | Misc fixes and clean up of line ending detect code. | Nathan Vegdahl | 2021-06-20 |
| | | | |||
| * | | Merge remote-tracking branch 'origin/master' into line_ending_detection | Jan Hrastnik | 2021-06-19 |
| |\ \ | |||
| * | | | trying out line ending helper functions in commands.rs | Jan Hrastnik | 2021-06-16 |
| | | | | |||
| * | | | rebase on branch line_ending_detection | Jan Hrastnik | 2021-06-16 |
| | | | | |||
* | | | | Add progress spinners to status line | wojciechkepka | 2021-06-21 |
| | | | | |||
* | | | | Add a `Spinner` | wojciechkepka | 2021-06-21 |
| |_|/ |/| | | |||
* | | | Add comment, statusline + commandline = 2 | wojciechkepka | 2021-06-20 |
| | | | |||
* | | | Use full screen size | wojciechkepka | 2021-06-20 |
| | | | |||
* | | | Make completion window move to top when cursor is below half | wojciechkepka | 2021-06-20 |
| | | | |||
* | | | ui: prompt: Add more keymappings | Blaž Hrastnik | 2021-06-20 |
| | | | |||
* | | | Re-export unicode crates from helix_core | Blaž Hrastnik | 2021-06-20 |
| | | | |||
* | | | ui: prompt: Better unicode support | Blaž Hrastnik | 2021-06-20 |
| | | | | | | | | | | | | | | | We copied over eval_movement from wezterm, that already solves most of our problems. self.cursor is now byte-based. | ||
* | | | Fix overflow | wojciechkepka | 2021-06-19 |
| | | | |||
* | | | Add theme completer | wojciechkepka | 2021-06-19 |
| | | | |||
* | | | Add ability to change theme on editor | wojciechkepka | 2021-06-19 |
| | | | |||
* | | | Revert "Refactor key into helix-view" | Blaž Hrastnik | 2021-06-19 |
| |/ |/| | | | | | | | | | Did not use defaults when custom keymap was used This reverts commit ca806d4f852e934651132fc9570a6110e30f646d. | ||
* | | Refactor key into helix-view | Ivan Tham | 2021-06-19 |
| | | | | | | | | Now also make use of Deserialize for Config. | ||
* | | Add `ui.statusline.inactive`, use `ui.statusline` for statusline text | wojciechkepka | 2021-06-18 |
| | | |||
* | | Fix expansion of `~` (#284) | Wojciech Kępka | 2021-06-18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix expansion of `~`, dont use directory relative to cwd. * Add `expand_tilde` * Bring back `canonicalize_path`, use `expand_tilde` to `normalize` * Make `:open ~` completion work * Fix clippy * Fold home dir into tilde in Document `realitve_path` | ||
* | | Fix panic when entering unicode in command prompt | Benoît CORTIER | 2021-06-18 |
| | | | | | | | | | | | | | | It was attempted to use `String::insert` and `String::remove` to insert without taking care of unicodes. Fixes https://github.com/helix-editor/helix/issues/282 | ||
* | | Replace `Editor::current` by a macro | Benoît CORTIER | 2021-06-18 |
| | | | | | | | | | | | | | | | | | | This is necessary to workaround ownership issues across function calls. The issue notably arised when implementing the registers into `Editor` and I was getting annoyed again when implementing copy/pasting into system clipboard. The problem is addressed by using macro calls instead of function calls. There is no notable side effect. | ||
* | | Configurable keys 2 (Mapping keys to commands) (#268) | PabloMansanet | 2021-06-17 |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add convenience/clarity wrapper for Range initialization * Add keycode parse and display methods * Add remapping functions and tests * Implement key remapping * Add remapping book entry * Use raw string literal for toml * Add command constants * Make command functions private * Map directly to commands * Match key parsing/displaying to Kakoune * Formatting pass * Update documentation * Formatting * Fix example in the book * Refactor into single config file * Formatting * Refactor configuration and add keymap newtype wrappers * Address first batch of PR comments * Replace FromStr with custom deserialize | ||
* | Add theme key for selected line number | Gokul Soumya | 2021-06-16 |
| | | | | | | | | | | | Adds `ui.linenr.selected` which controls highlight of linu numbes which have cursors on. - Fallback to linenr if linenr.selected is missing - Update docs and themes - Add TODOs for themes with temporary linenr.selected | ||
* | Add cursor kind to separate hidden cursor from pos | Ivan Tham | 2021-06-15 |
| | | | | | Now IME cursor position should be correct since we can still set cursor position without drawing the cursor. | ||
* | Remove RwLock for registers | Benoît CORTIER | 2021-06-15 |
| | | | | | | | | Registers are stored inside `Editor` and accessed without `RwLock`. To work around ownership, I added a sister method to `Editor::current`: `Editor::current_with_context`. I tried to modify `Editor::current` directly but it's used at a lot of places so I reverted into this for now at least. | ||
* | Use `_impl` suffix instead of `_` prefix | Benoît CORTIER | 2021-06-15 |
| | | | | | | Helpers / internal implementations where using the `_` prefix. However, this prefix also suppress unused warnings. I suggest we use the `_impl` suffix instead. | ||
* | Add filter ability to picker | Ivan Tham | 2021-06-15 |
| | | | | Inspired by doom emacs. Able to filter picker options multiple times. | ||
* | Remove indent style status-line display for now. | Nathan Vegdahl | 2021-06-15 |
| | |||
* | Implement command to change the indent-style setting of a document. | Nathan Vegdahl | 2021-06-15 |
| | |||
* | Render indent-style status in status line. | Nathan Vegdahl | 2021-06-15 |
| | | | | Also cleaned up the status line code a little. | ||
* | Add ctrl-w for prompt | Ivan Tham | 2021-06-14 |
| | |||
* | Add ui.selection to theme.toml | Gokul Soumya | 2021-06-14 |
| | | | | | Enables changing the color of the selection which was previously hard coded. | ||
* | ui: Prompt should figure out a reasonable column width | Blaž Hrastnik | 2021-06-13 |
| | | | | | Fixes #192 Refs #225 | ||
* | Add `Copy` derive to `PromptEvent` | Wojciech Kępka | 2021-06-13 |
| | |||
* | commands: Add more write commands | Wojciech Kępka | 2021-06-13 |
| | |||
* | Change picker horizontal split to h | Ivan Tham | 2021-06-12 |
| | | | Follow window mode and vim behavior, x seemed weird. | ||
* | Fix documentation popup panic | wojciechkepka | 2021-06-10 |
| | |||
* | Only enforce limit outside of .git | Kevin Sjöberg | 2021-06-09 |
| | |||
* | Match keybindings of menu | Kevin Sjöberg | 2021-06-09 |
| | |||
* | Fix Shift-Tab for moving upwards in menu | Kevin Sjöberg | 2021-06-09 |
| | |||
* | Fix crash when too many completions available | Blaž Hrastnik | 2021-06-08 |
| | | | | Refs #81 | ||
* | Support go to line 1 | Zheming Li | 2021-06-08 |
| | |||
* | Make matching bracket dimmed, prevent out of bounds rendering | Wojciech Kępka | 2021-06-08 |
| | |||
* | Bump file picker limit | Kevin Sjöberg | 2021-06-08 |
| | |||
* | completion: Fix unimplemented autocomplete | Wojciech Kępka | 2021-06-08 |
| |