Smit Barmase
bbf16bda75
editor: Improve rewrap to respect indent and prefix boundaries ( #33566 )
...
1. Fixes bug where this would not rewrap:
```rs
// This is the first long comment block to be wrapped.
fn my_func(a: u32);
// This is the second long comment block to be wrapped.
```
2. Comment prefix boundaries (Notice now they don't merge between
different comment prefix):
Initial text:
```rs
// A regular long long comment to be wrapped.
// A second regular long comment to be wrapped.
/// A documentation long comment to be wrapped.
```
Upon rewrap:
```rs
// A regular long long comment to be
// wrapped. A second regular long
// comment to be wrapped.
/// A documentation long comment to be
/// wrapped.
```
3. Indent boundaries (Notice now they don't merge between different
indentation):
Initial text:
```rs
fn foo() {
// This is a long comment at the base indent.
// This is a long comment at the base indent.
// This is a long comment at the next indent.
// This is a long comment at the next indent.
// This is a long comment at the base indent.
}
```
Upon rewrap:
```rs
fn foo() {
// This is a long comment at the base
// indent. This is a long comment at the
// base indent.
// This is a long comment at the
// next indent. This is a long
// comment at the next indent.
// This is a long comment at the base
// indent.
}
```
Release Notes:
- Fixed an issue where rewrap would not work with selection when two
comment blocks are separated with line of code.
- Improved rewrap to respect changes in indentation or comment prefix
(e.g. `//` vs `///`) as boundaries so that it doesn't merge them into
one mangled text.
2025-06-28 05:38:18 +05:30
..
2025-06-25 19:57:28 +03:00
2025-06-27 08:32:13 +00:00
2025-06-25 19:05:29 +02:00
2025-06-27 19:33:58 -03:00
2025-06-23 18:48:26 +00:00
2025-06-17 14:39:45 +00:00
2025-05-20 23:06:07 +00:00
2025-06-27 08:32:13 +00:00
2025-05-21 09:27:54 +00:00
2025-06-26 20:54:19 +02:00
2025-06-16 18:45:24 +03:00
2025-06-27 14:31:31 -06:00
2025-05-26 21:20:41 -03:00
2025-06-13 13:11:02 -04:00
2025-05-20 23:06:07 +00:00
2025-06-27 09:08:05 +00:00
2025-04-02 13:26:34 -07:00
2025-06-25 17:15:13 +03:00
2025-05-30 08:32:54 -07:00
2025-06-26 20:54:19 +02:00
2025-05-26 23:04:31 -04:00
2025-06-24 05:14:15 +00:00
2025-06-22 16:23:17 -04:00
2025-06-22 16:23:17 -04:00
2025-05-04 08:28:39 +00:00
2025-06-27 14:31:31 -06:00
2025-06-27 14:31:31 -06:00
2025-04-02 13:26:34 -07:00
2025-06-18 16:01:28 +05:30
2025-04-02 13:26:34 -07:00
2025-06-05 12:59:22 +00:00
2025-06-21 11:19:23 -04:00
2025-06-27 14:31:31 -06:00
2025-04-02 13:26:34 -07:00
2025-06-24 18:24:43 +00:00
2025-06-26 14:02:09 -04:00
2025-06-15 19:51:04 +00:00
2025-06-23 17:06:48 +00:00
2025-06-13 20:56:23 +00:00
2025-06-27 14:31:31 -06:00
2025-06-25 09:42:30 +02:00
2025-06-27 14:31:31 -06:00
2025-06-24 04:34:51 +00:00
2025-06-28 05:38:18 +05:30
2025-06-26 10:53:33 -04:00
2025-06-21 11:19:23 -04:00
2025-06-18 14:05:29 +00:00
2025-06-27 15:34:21 -04:00
2025-06-25 19:57:28 +03:00
2025-06-26 08:59:04 -04:00
2025-06-17 13:56:19 -06:00
2025-06-22 16:23:17 -04:00
2025-06-25 19:17:41 +03:00
2025-04-02 13:26:34 -07:00
2025-06-26 20:54:19 +02:00
2025-04-02 13:26:34 -07:00
2025-06-18 16:01:28 +05:30
2025-06-27 09:16:15 -06:00
2025-06-03 12:23:01 -04:00
2025-06-27 20:50:53 -03:00
2025-06-27 14:31:31 -06:00
2025-06-17 20:26:27 +00:00
2025-06-26 20:54:19 +02:00
2025-06-24 04:34:51 +00:00
2025-04-02 13:26:34 -07:00
2025-04-02 13:26:34 -07:00
2025-05-20 23:06:07 +00:00
2025-04-02 13:26:34 -07:00
2025-06-26 22:27:21 +00:00
2025-06-03 13:18:29 +02:00
2025-06-18 16:01:28 +05:30
2025-06-20 21:28:48 +00:00
2025-06-27 14:31:31 -06:00
2025-06-06 20:54:00 +00:00
2025-05-20 23:06:07 +00:00
2025-05-17 16:42:45 +00:00
2025-06-18 16:01:28 +05:30
2025-06-27 14:31:31 -06:00
2025-06-26 11:11:03 +05:30
2025-06-25 19:57:28 +03:00
2025-06-27 08:32:13 +00:00
2025-06-27 16:36:16 +02:00
2025-06-18 16:01:28 +05:30
2025-06-27 14:31:31 -06:00
2025-06-26 11:11:03 +05:30
2025-05-20 23:06:07 +00:00
2025-06-25 21:00:33 -04:00
2025-06-17 10:43:07 -04:00
2025-06-25 19:57:28 +03:00
2025-06-27 15:46:04 +00:00
2025-06-27 14:31:31 -06:00
2025-05-20 23:06:07 +00:00
2025-04-29 21:58:45 -03:00
2025-06-25 19:05:29 +02:00
2025-06-17 10:43:07 -04:00
2025-06-26 20:54:19 +02:00
2025-06-06 16:00:09 +00:00
2025-06-23 19:55:21 -03:00
2025-06-17 10:43:07 -04:00
2025-06-25 09:42:30 +02:00
2025-06-21 08:03:50 +02:00
2025-06-27 14:31:31 -06:00
2025-06-27 14:31:31 -06:00
2025-04-02 13:26:34 -07:00
2025-06-14 21:39:54 -06:00
2025-06-27 14:31:31 -06:00
2025-06-13 07:26:06 +00:00
2025-06-27 16:31:40 +00:00
2025-06-27 14:31:31 -06:00
2025-06-27 14:31:31 -06:00
2025-06-18 16:01:28 +05:30
2025-06-27 13:15:50 -06:00
2025-06-27 15:46:04 +00:00
2025-05-26 17:43:57 +00:00
2025-05-23 14:53:53 +00:00
2025-06-25 16:49:37 +00:00
2025-06-27 16:31:40 +00:00
2025-06-27 14:31:31 -06:00
2025-05-20 23:06:07 +00:00
2025-04-02 13:26:34 -07:00
2025-06-09 13:11:57 +02:00
2025-06-17 12:09:08 +02:00
2025-06-27 14:31:31 -06:00
2025-04-02 13:26:34 -07:00
2025-06-27 14:31:31 -06:00
2025-06-13 06:32:29 +00:00
2025-05-20 23:06:07 +00:00
2025-04-25 17:41:49 +03:00
2025-06-26 21:52:26 -04:00
2025-06-24 04:34:51 +00:00
2025-05-20 23:06:07 +00:00
2025-05-26 23:04:31 -04:00
2025-06-18 16:01:28 +05:30
2025-05-20 23:06:07 +00:00
2025-04-02 13:26:34 -07:00
2025-05-16 17:35:44 +02:00
2025-06-24 16:07:45 +00:00
2025-05-01 17:37:43 +02:00
2025-06-09 13:11:57 +02:00
2025-04-02 13:26:34 -07:00
2025-06-17 14:39:45 +00:00
2025-06-27 09:08:05 +00:00
2025-06-24 04:34:51 +00:00
2025-06-18 22:47:48 +00:00
2025-06-27 14:31:31 -06:00
2025-04-02 13:26:34 -07:00
2025-04-21 21:30:21 -07:00
2025-06-26 20:54:19 +02:00
2025-06-24 04:34:51 +00:00
2025-06-09 13:11:57 +02:00
2025-06-27 15:46:04 +00:00
2025-04-02 13:26:34 -07:00
2025-06-26 20:54:19 +02:00
2025-06-18 16:01:28 +05:30
2025-05-06 10:18:48 +00:00
2025-06-24 04:34:51 +00:00
2025-06-18 16:01:28 +05:30
2025-06-24 04:34:51 +00:00
2025-06-18 18:47:43 -03:00
2025-05-23 19:31:25 +00:00
2025-06-27 15:46:04 +00:00
2025-06-21 11:19:23 -04:00
2025-06-13 06:32:29 +00:00
2025-06-25 13:26:41 +00:00
2025-06-27 14:31:31 -06:00
2025-06-18 21:26:12 +00:00
2025-06-09 13:11:57 +02:00
2025-04-23 15:30:20 +00:00
2025-05-20 23:06:07 +00:00
2025-06-18 16:01:28 +05:30
2025-06-25 19:52:15 +00:00
2025-06-26 20:54:19 +02:00
2025-06-27 14:31:31 -06:00
2025-06-24 04:34:51 +00:00
2025-06-20 21:28:48 +00:00
2025-06-06 00:49:30 -06:00
2025-04-23 20:54:09 +00:00