1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-11 13:00:41 +03:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Bruno Heridet
95af5c1b24
Merge dbf9d6b823 into 700265b25d 2024-06-13 15:18:18 +00:00
Delapouite
dbf9d6b823 Add count support for repeat last insert '.' and repeat_last_select '<a-.>' 2017-09-28 22:53:35 +02:00

View File

@ -2315,8 +2315,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} },