1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-08-16 16:20:38 +03:00
This commit is contained in:
Bruno Heridet 2024-06-27 19:55:14 +03:00 committed by GitHub
commit 0348cc284f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2322,8 +2322,8 @@ static constexpr HashMap<Key, NormalCmd, MemoryDomain::Undefined, KeymapBackend>
{ {alt('s')}, {"split selected text on line ends", split_lines} },
{ {alt('S')}, {"select selection boundaries", select_boundaries} },
{ {'.'}, {"repeat last insert command", repeat_last_insert} },
{ {alt('.')}, {"repeat last object select/character find", repeat_last_select} },
{ {'.'}, {"repeat last insert command", repeated<repeat_last_insert>} },
{ {alt('.')}, {"repeat last object select/character find", repeated<repeat_last_select>} },
{ {'%'}, {"select whole buffer", select_whole_buffer} },