1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-08-17 00:30:26 +03:00

Add count support for repeat last insert '.' and repeat_last_select '<a-.>'

This commit is contained in:
Delapouite 2017-09-28 22:53:35 +02:00
parent 0da5cabbfe
commit dbf9d6b823

View File

@ -2004,8 +2004,8 @@ const HashMap<Key, NormalCmd> keymap{
{ {'S'}, {"split selected text on regex matches", split_regex} },
{ {alt('s')}, {"split selected text on line ends", split_lines} },
{ {'.'}, {"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} },