how can i allow j,k repetition. #73
-
Is there any way i can allow j,k repetition or j,k getting pressed more than 15 times in a row? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
you can set -- Hardtime
require('hardtime').setup {
max_count = 15,
} Alternatively, you can overwrite the -- Hardtime
require('hardtime').setup {
restricted_keys = {
['j'] = {},
['k'] = {},
},
} |
Beta Was this translation helpful? Give feedback.
you can set
max_count
to 15, which permits repetition up to 15 times;However, this will also apply the 15 times repetition limit to allrestricted_keys
, includeh
,l
, and others.Alternatively, you can overwrite the
restricted_keys
configuration to remove the restrictions onj
andk
. This change will allow an unlimited number of repetitions for these keys without any restrictions.