Robbie Vanbrabant
26a3b42a15
LibGUI: Add visual line mode to VimEditingEngine
...
Applications using the Vim emulation engine now support line-wise text
selection.
We already have support for character-wise text selection, by pressing
`v` from normal mode.
However now can also trigger line-wise text selection by pressing
`shift+v` from normal mode, and then using vertical motion commands
(e.g. `j` or `k`) to expand the selection. This is a standard vim
feature.
In visual line mode the following operations are supported:
* `escape`: back to normal mode
* `u`: convert to lowercase
* `U`: convert to uppercase
* `~`: toggle case
* `ctrl+d`: move down by 50% of page height
* `ctrl+u`: move up by 50% of page height
* `d` or `x`: delete selection
* `c`: change selection
* `y`: copy selection
* `page up`: move up by 100% of page height
* `page down`: move down by 100% of page height
Notably I didn't implement pressing `v` to go to regular
(character-wise) visual mode straight from visual line mode. This is
tricky to implement in the current code base, and there's an
alternative, which is to take a detour via normal mode.
2022-08-26 12:50:30 +02:00
..
2022-07-12 23:11:35 +02:00
2022-07-12 23:11:35 +02:00
2022-07-12 23:11:35 +02:00
2022-04-01 21:24:45 +01:00
2022-07-14 13:17:33 +02:00
2022-07-14 13:17:33 +02:00
2022-07-01 23:58:08 +01:00
2022-06-30 11:53:50 +02:00
2022-03-29 17:45:36 +02:00
2022-03-29 17:45:36 +02:00
2022-08-15 17:17:54 +02:00
2022-04-01 21:24:45 +01:00
2022-08-25 13:28:50 +02:00
2022-06-17 19:46:30 +01:00
2022-08-08 16:41:36 -04:00
2022-07-24 13:40:31 +01:00
2022-04-01 21:24:45 +01:00
2022-06-01 12:33:06 +01:00
2022-04-01 21:24:45 +01:00
2022-03-12 14:44:43 -08:00
2022-08-16 16:53:00 +02:00
2022-06-17 19:46:30 +01:00
2022-07-12 23:11:35 +02:00
2022-05-21 18:15:58 +02:00
2022-06-28 17:52:42 +01:00
2022-06-28 17:52:42 +01:00
2022-08-23 12:50:20 +02:00
2022-08-22 12:48:11 +02:00
2022-08-04 02:56:17 +02:00
2022-08-04 02:56:17 +02:00
2022-04-20 18:37:56 +02:00
2022-04-20 18:37:56 +02:00
2022-06-28 17:52:42 +01:00
2022-07-25 15:25:13 +02:00
2022-08-14 21:52:35 +01:00
2022-02-25 22:35:12 +01:00
2022-07-24 13:40:31 +01:00
2022-06-28 17:52:42 +01:00
2022-04-29 20:06:39 +02:00
2022-07-15 12:35:38 +02:00
2022-03-12 14:44:43 -08:00
2022-07-24 13:40:31 +01:00
2022-07-24 13:40:31 +01:00
2022-08-25 13:28:50 +02:00
2022-06-17 19:46:30 +01:00
2022-03-12 14:44:43 -08:00
2022-07-12 23:11:35 +02:00
2022-05-13 16:27:43 +02:00
2022-07-12 23:11:35 +02:00
2022-07-12 23:11:35 +02:00
2022-04-01 21:24:45 +01:00
2022-08-26 12:48:05 +02:00
2022-08-26 12:48:05 +02:00
2022-08-25 13:28:50 +02:00
2022-08-14 21:52:35 +01:00
2022-08-02 04:04:08 +00:00
2022-08-09 12:08:21 +02:00
2022-08-25 13:28:50 +02:00
2022-05-13 16:27:43 +02:00
2022-02-25 22:35:12 +01:00
2022-02-25 22:35:12 +01:00
2022-08-16 16:43:27 +02:00
2022-04-01 21:24:45 +01:00
2022-07-19 10:49:38 +01:00
2022-07-19 10:49:38 +01:00
2022-08-25 13:28:50 +02:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-08-26 12:48:05 +02:00
2022-07-12 23:11:35 +02:00
2022-04-01 21:24:45 +01:00
2022-08-04 02:56:17 +02:00
2022-07-12 23:11:35 +02:00
2022-06-28 17:52:42 +01:00
2022-07-12 23:11:35 +02:00
2022-07-12 23:11:35 +02:00
2022-05-07 20:07:48 +02:00
2022-05-07 20:07:48 +02:00
2022-07-12 23:11:35 +02:00
2022-04-09 23:48:18 +02:00
2022-06-10 23:02:07 +01:00
2022-06-10 23:02:07 +01:00
2022-03-12 14:44:43 -08:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-03-12 14:44:43 -08:00
2022-08-14 13:59:19 +01:00
2022-08-14 13:59:19 +01:00
2022-06-30 11:53:50 +02:00
2022-03-12 14:44:43 -08:00
2022-08-15 17:17:54 +02:00
2022-08-15 17:17:54 +02:00
2022-07-12 23:11:35 +02:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-08-05 13:55:13 +02:00
2022-04-01 21:24:45 +01:00
2022-03-12 14:44:43 -08:00
2022-03-12 14:44:43 -08:00
2022-06-28 17:52:42 +01:00
2022-05-13 16:27:43 +02:00
2022-03-12 14:44:43 -08:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-06-30 11:51:25 +02:00
2022-06-28 17:52:42 +01:00
2022-04-01 21:24:45 +01:00
2022-07-12 23:11:35 +02:00
2022-04-03 12:21:05 +02:00
2022-03-12 14:44:43 -08:00
2022-07-12 23:11:35 +02:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-07-04 11:15:40 +02:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-03-12 14:44:43 -08:00
2022-03-12 14:44:43 -08:00
2022-06-01 12:33:06 +01:00
2022-04-01 21:24:45 +01:00
2022-07-12 23:11:35 +02:00
2022-05-13 16:27:43 +02:00
2022-07-12 23:11:35 +02:00
2022-03-12 14:44:43 -08:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-07-12 23:11:35 +02:00
2022-05-08 17:02:00 +02:00
2022-05-08 17:02:00 +02:00
2022-02-25 22:35:12 +01:00
2022-02-25 22:35:12 +01:00
2022-07-12 23:11:35 +02:00
2022-04-01 21:24:45 +01:00
2022-08-14 21:52:35 +01:00
2022-04-01 21:24:45 +01:00
2022-05-08 17:17:56 +02:00
2022-04-01 21:24:45 +01:00
2022-07-12 23:11:35 +02:00
2022-06-30 11:51:25 +02:00
2022-05-13 16:27:43 +02:00
2022-07-12 23:11:35 +02:00
2022-05-25 23:14:22 +01:00
2022-05-25 23:14:22 +01:00
2022-07-12 23:11:35 +02:00
2022-07-12 23:11:35 +02:00
2022-03-12 14:44:43 -08:00
2022-03-12 14:44:43 -08:00
2022-06-28 17:52:42 +01:00
2022-06-28 17:52:42 +01:00
2022-04-01 21:24:45 +01:00
2022-04-01 21:24:45 +01:00
2022-07-12 23:11:35 +02:00
2022-03-12 14:44:43 -08:00
2022-03-12 14:44:43 -08:00
2022-03-12 14:44:43 -08:00
2022-06-30 11:53:50 +02:00
2022-06-30 11:53:50 +02:00
2022-08-09 12:08:21 +02:00
2022-06-28 17:52:42 +01:00
2022-03-12 14:44:43 -08:00
2022-03-12 14:44:43 -08:00
2022-08-14 23:33:28 +02:00
2022-05-12 13:10:49 +02:00
2022-05-30 00:13:27 +01:00
2022-05-30 00:13:27 +01:00
2022-04-01 21:24:45 +01:00
2022-03-12 14:44:43 -08:00
2022-02-16 19:51:01 +01:00
2022-04-06 12:47:50 +02:00
2022-07-12 23:11:35 +02:00
2022-05-23 00:12:19 +02:00
2022-08-09 12:08:21 +02:00
2022-08-05 13:54:18 +02:00
2022-03-12 14:44:43 -08:00
2022-04-01 21:24:45 +01:00
2022-08-04 02:56:17 +02:00
2022-03-12 14:44:43 -08:00
2022-08-09 12:08:21 +02:00
2022-04-13 09:26:44 +04:30
2022-03-12 14:44:43 -08:00
2022-08-09 12:08:21 +02:00
2022-07-04 11:15:40 +02:00
2022-06-28 17:52:42 +01:00
2022-05-08 16:36:53 +02:00
2022-07-19 10:49:38 +01:00
2022-07-19 10:49:38 +01:00
2022-08-18 15:59:53 +02:00
2022-08-18 15:59:53 +02:00
2022-07-12 23:11:35 +02:00
2022-07-15 12:33:59 +02:00
2022-08-04 02:56:17 +02:00
2022-08-04 02:56:17 +02:00
2022-04-09 23:48:18 +02:00
2022-03-12 14:44:43 -08:00
2022-08-15 17:17:54 +02:00
2022-04-06 12:47:50 +02:00
2022-05-13 16:31:03 +02:00
2022-05-13 16:31:03 +02:00
2022-07-12 23:11:35 +02:00
2022-07-06 14:25:30 +02:00
2022-07-06 14:25:30 +02:00
2022-05-08 17:17:56 +02:00
2022-04-01 21:24:45 +01:00
2022-04-20 00:15:23 +04:30
2022-04-20 00:15:23 +04:30
2022-08-26 12:50:30 +02:00
2022-08-26 12:50:30 +02:00
2022-08-25 13:28:50 +02:00
2022-08-16 00:58:26 +02:00
2022-08-25 13:28:50 +02:00
2022-08-25 13:28:50 +02:00
2022-08-25 13:28:50 +02:00