Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Refactor keymap definitions using macros | Gokul Soumya | 2021-06-14 | |
| | | | | | Adds a macro rule to the `key!` macro so that keymaps using `Left`, `Home`, `Esc`, etc. will also be accepted. | |||
* | Fix jump behavior, goto_implementation now jump | Ivan Tham | 2021-06-10 | |
| | | | | | Better jump behavior since we override the first jump if it's on the first document. At the same time, ctrl-i is now working with gd jumps. | |||
* | Update keymap | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | commands: Add replace with yanked as `R` | Wojciech Kępka | 2021-06-08 | |
| | ||||
* | 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`. | |||
* | Add diagnostics keybindings | Wojciech Kępka | 2021-06-07 | |
| | ||||
* | 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. | |||
* | Add window mode | Ivan Tham | 2021-06-06 | |
| | | | | Fix #93 | |||
* | 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 | |
| | ||||
* | 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 | |
| | ||||
* | removed shift matching | Jan Hrastnik | 2021-06-03 | |
| | ||||
* | Support ctrl-f and ctrl-b to page up/down, fixes #41 | Blaž Hrastnik | 2021-06-02 | |
| | ||||
* | Drop selection_lines completely, change move_line_start binding | Blaž Hrastnik | 2021-05-18 | |
| | ||||
* | Implement most of the view mode (z). | Blaž Hrastnik | 2021-04-14 | |
| | ||||
* | Keep primary selection as space+space. | Blaž Hrastnik | 2021-04-09 | |
| | ||||
* | N as extend with search (for now, N should be search_prev). | Blaž Hrastnik | 2021-04-09 | |
| | ||||
* | Implement P as paste_before. | Blaž Hrastnik | 2021-04-07 | |
| | ||||
* | Move pickers under my leader key mode (space). | Blaž Hrastnik | 2021-03-30 | |
| | ||||
* | Repeat insert command (.). | Blaž Hrastnik | 2021-03-30 | |
| | ||||
* | Store intra-files jumps (goto) on the jumplist. | Blaž Hrastnik | 2021-03-29 | |
| | ||||
* | Replace Mode::Goto with just using on_next_key. | Blaž Hrastnik | 2021-03-29 | |
| | ||||
* | wip: Hooks & trigger characters for completion/signature_help. | Blaž Hrastnik | 2021-03-24 | |
| | ||||
* | Trivial jumplist implementation. | Blaž Hrastnik | 2021-03-24 | |
| | ||||
* | Implement m / match_brackets (using tree sitter). | Blaž Hrastnik | 2021-03-22 | |
| | ||||
* | Implement open_above (O). | Blaž Hrastnik | 2021-03-22 | |
| | ||||
* | Implement replace command (r<key>). | Blaž Hrastnik | 2021-03-22 | |
| | ||||
* | wip | Jan Hrastnik | 2021-03-16 | |
| | ||||
* | minor: TODO comment cleanup | Blaž Hrastnik | 2021-03-16 | |
| | ||||
* | Add command for keeping only the primary selection. | Blaž Hrastnik | 2021-03-15 | |
| | ||||
* | Implement keep_selections (filter selections on regex). | Blaž Hrastnik | 2021-03-15 | |
| | ||||
* | Implement the f/t/F/T find/till family of commands. | Blaž Hrastnik | 2021-03-11 | |
| | ||||
* | find-till (f) prototype, on_next_key mode implementation. | Blaž Hrastnik | 2021-03-11 | |
| | ||||
* | minor: fix hover key | Blaž Hrastnik | 2021-03-02 | |
| | ||||
* | commands: Implement X as extend line. | Blaž Hrastnik | 2021-03-01 | |
| | ||||
* | Add a selection mode again. | Blaž Hrastnik | 2021-03-01 | |
| | ||||
* | commands: Implement join_selections. | Blaž Hrastnik | 2021-02-26 | |
| | ||||
* | commands: = as range formatting (via lsp) | Blaž Hrastnik | 2021-02-26 | |
| | ||||
* | lsp: Hover documentation draft. | Blaž Hrastnik | 2021-02-25 | |
| | ||||
* | commands: Implement expand_selection. | Blaž Hrastnik | 2021-02-22 | |
| | ||||
* | commands: add * as selection search. | Blaž Hrastnik | 2021-02-22 | |
| | ||||
* | commands: Wire up toggle comments as ctrl-c | Blaž Hrastnik | 2021-02-19 | |
| | ||||
* | search: Barebones implementation. | Blaž Hrastnik | 2021-02-12 | |
| | ||||
* | Finally: Retain horizontal position when moving vertically. | Blaž Hrastnik | 2021-02-12 | |
| | ||||
* | commands: % as select_all. | Blaž Hrastnik | 2021-02-09 | |
| | ||||
* | A dumb "next view" implementation that works. | Blaž Hrastnik | 2021-02-04 | |
| | ||||
* | commands: Implement select_on_matches. | Blaž Hrastnik | 2021-01-22 | |
| | ||||
* | commands: add W and B (extend selection by word). | Blaž Hrastnik | 2021-01-22 | |
| | ||||
* | Retrieve completion options on ctrl-x. | Blaž Hrastnik | 2020-12-23 | |
| |