Blaž Hrastnik
|
418ee17b86
|
Canonicalize the path on open to avoid duplicates.
|
2021-05-07 14:30:23 +09:00 |
|
Blaž Hrastnik
|
7c915dc065
|
Add the :new command, don't crash if saving without filename.
|
2021-05-07 14:19:58 +09:00 |
|
Blaž Hrastnik
|
fd4fd12fa3
|
clippy lint
|
2021-05-06 17:20:00 +09:00 |
|
Blaž Hrastnik
|
d00414f81a
|
Start moving more LSP calls into callbacks/futures without capturing self
|
2021-05-06 15:08:59 +09:00 |
|
Blaž Hrastnik
|
355ad3cb82
|
Tokio migration.
|
2021-05-06 13:56:34 +09:00 |
|
Blaž Hrastnik
|
b0bdcab970
|
doc: Note about diagnostic mapping.
|
2021-05-03 17:47:48 +09:00 |
|
Blaž Hrastnik
|
28c167d71d
|
doc: Be smarter about calculating modified status.
This way edit -> undo will properly show up as unmodified.
|
2021-05-03 17:23:11 +09:00 |
|
Blaž Hrastnik
|
b5b650cfe7
|
Fix the last line calculation inside ensure_cursor_in_view
|
2021-04-14 17:15:32 +09:00 |
|
Blaž Hrastnik
|
3e5f24a9d5
|
lsp: support both utf-8 and utf-16 offsets.
Still need to implement the clangd encoding negotiation, but it's
a start. Should also manually override to utf8 for pyls.
|
2021-04-14 15:39:31 +09:00 |
|
Blaž Hrastnik
|
180521fefe
|
Adjust scroll() to match kakoune: only scroll the view if cursor in bounds.
|
2021-04-14 14:27:47 +09:00 |
|
Blaž Hrastnik
|
978f5114d8
|
Horizontal scrolling! It only took a year to get around to it.
|
2021-04-09 19:29:01 +09:00 |
|
Blaž Hrastnik
|
52da68e49a
|
Render a separator between vertical splits.
|
2021-04-08 22:34:06 +09:00 |
|
Blaž Hrastnik
|
9f318a8529
|
Fix an issue with closing nested splits.
The parent id was never assigned to the split, so removing the container
when it became empty failed.
|
2021-04-08 22:34:06 +09:00 |
|
Blaž Hrastnik
|
8b33ba2284
|
Correct the naming issue with vsplit and hsplit being swapped.
|
2021-04-08 15:52:04 +09:00 |
|
Blaž Hrastnik
|
bc4e54c0c4
|
Load config files from ~/.config/helix, fallback to defaults.
|
2021-04-07 23:56:20 +09:00 |
|
Blaž Hrastnik
|
91462af546
|
Allow starting hx without a file. A new blank file will be created.
|
2021-04-06 19:02:22 +09:00 |
|
Blaž Hrastnik
|
cf7b19d711
|
Always update selection: Empty transactions can still change selections.
|
2021-04-06 17:29:39 +09:00 |
|
Blaž Hrastnik
|
0dbd5b61ef
|
Simplify code by providin cx.current() = (view, doc).
|
2021-04-01 11:01:26 +09:00 |
|
Blaž Hrastnik
|
ceea5eacd8
|
clippy lint
|
2021-03-31 23:42:16 +09:00 |
|
Blaž Hrastnik
|
15c9a33ebc
|
Drop doc.state. Use doc.text + doc.selections.
|
2021-03-31 23:23:13 +09:00 |
|
Blaž Hrastnik
|
6c4093c946
|
Weave through view_id references so that views into one file have independent selects.
|
2021-03-31 17:17:01 +09:00 |
|
Blaž Hrastnik
|
9eaef6e333
|
Fully drop State references.
|
2021-03-31 15:45:18 +09:00 |
|
Blaž Hrastnik
|
1b5316ea74
|
Track document modified state.
|
2021-03-30 18:23:12 +09:00 |
|
Blaž Hrastnik
|
742b3a709f
|
Store intra-files jumps (goto) on the jumplist.
|
2021-03-29 16:32:42 +09:00 |
|
Blaž Hrastnik
|
c1f2a14453
|
view: document.rs cleanup
|
2021-03-29 15:22:43 +09:00 |
|
Blaž Hrastnik
|
aefafc25cd
|
Replace Mode::Goto with just using on_next_key.
|
2021-03-29 15:04:29 +09:00 |
|
Blaž Hrastnik
|
cf0e191a6a
|
Clippy lint
|
2021-03-25 17:45:52 +09:00 |
|
Blaž Hrastnik
|
a65395d94b
|
Load theme from toml file.
|
2021-03-25 16:42:14 +09:00 |
|
Blaž Hrastnik
|
e3c4edae32
|
Add the machinery to load syntax config from TOML.
It's embedded into the binary at build time for now, but it's progress.
|
2021-03-25 15:26:25 +09:00 |
|
Blaž Hrastnik
|
8657c57cf2
|
Trivial jumplist implementation.
|
2021-03-24 18:01:26 +09:00 |
|
Blaž Hrastnik
|
4b176caded
|
Reset first_line when changing files.
|
2021-03-24 16:56:29 +09:00 |
|
Blaž Hrastnik
|
8a0ab447ec
|
editor.open can now either replace the current view or open in a split.
|
2021-03-24 14:28:26 +09:00 |
|
Blaž Hrastnik
|
b24cdd1295
|
Derive a separate ViewId type.
|
2021-03-24 14:03:20 +09:00 |
|
Blaž Hrastnik
|
8328fe926d
|
Drop refcell use, make view simply ref doc.id.
|
2021-03-23 18:14:35 +09:00 |
|
Blaž Hrastnik
|
bf95ee27aa
|
Store Document on the Editor type, make View reference it.
|
2021-03-22 13:53:43 +09:00 |
|
Blaž Hrastnik
|
5e6716c89c
|
Add tab_width and indent_unit config.
|
2021-03-22 13:53:36 +09:00 |
|
Blaž Hrastnik
|
cbcacb1063
|
Merge some imports.
|
2021-03-22 12:40:07 +09:00 |
|
Blaž Hrastnik
|
c4792efead
|
clippy lints
|
2021-03-22 12:29:55 +09:00 |
|
Blaž Hrastnik
|
c331721565
|
Finish hiding doc.state / State as an implementation detail.
|
2021-03-18 15:07:02 +09:00 |
|
Blaž Hrastnik
|
8ba1e15d29
|
Expose doc.syntax() via accessor.
|
2021-03-18 14:53:29 +09:00 |
|
Blaž Hrastnik
|
2b64f49f2c
|
Document::new should just take a rope.
|
2021-03-18 14:44:32 +09:00 |
|
Blaž Hrastnik
|
e261f3c50d
|
Expose doc.language_server as an accessor.
|
2021-03-18 14:40:22 +09:00 |
|
Blaž Hrastnik
|
59e6024186
|
Remove State from a few more signatures.
|
2021-03-18 14:17:32 +09:00 |
|
Blaž Hrastnik
|
8eaf9a432d
|
Make Transaction::change only rely on the rope.
|
2021-03-18 13:39:56 +09:00 |
|
Blaž Hrastnik
|
51c15da3c3
|
Hold a reference to executor on the Editor type.
|
2021-03-16 23:14:51 +09:00 |
|
Blaž Hrastnik
|
e3ec5e31ec
|
Fix goto code before merging.
|
2021-03-16 23:05:43 +09:00 |
|
Jan Hrastnik
|
eadad13efa
|
preparing for gd merge
|
2021-03-16 23:03:29 +09:00 |
|
Jan Hrastnik
|
4e461bea2f
|
editor.open now checks if view already exists
|
2021-03-16 23:03:29 +09:00 |
|
Jan Hrastnik
|
3869d7713e
|
added goto functions in helix-term
|
2021-03-16 23:03:10 +09:00 |
|
Jan Hrastnik
|
b738ae1bc7
|
more goto lsp functions
|
2021-03-16 23:03:10 +09:00 |
|