reorder rows on C-r

This commit is contained in:
Kartik K. Agaram 2023-10-16 22:42:55 -07:00
parent 9710fe0d4b
commit c32e65b2d6
1 changed files with 5 additions and 0 deletions

5
0018-on.keychord_press Normal file
View File

@ -0,0 +1,5 @@
on.keychord_press = function(chord, key)
if chord == 'C-r' then
Rows = ordered_keys(Data)
end
end