File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -173,19 +173,19 @@ function OrgMappings:toggle_checkbox()
173173end
174174
175175function OrgMappings :timestamp_up_day ()
176- return self :_adjust_date (vim .v .count1 , ' d' , config .mappings .org .org_timestamp_up_day )
176+ return self :_adjust_date (vim .v .count1 , ' d' , vim . v . count1 .. config .mappings .org .org_timestamp_up_day )
177177end
178178
179179function OrgMappings :timestamp_down_day ()
180- return self :_adjust_date (- vim .v .count1 , ' d' , config .mappings .org .org_timestamp_down_day )
180+ return self :_adjust_date (- vim .v .count1 , ' d' , vim . v . count1 .. config .mappings .org .org_timestamp_down_day )
181181end
182182
183183function OrgMappings :timestamp_up ()
184- return self :_adjust_date_part (' +' , vim .v .count1 , config .mappings .org .org_timestamp_up )
184+ return self :_adjust_date_part (' +' , vim .v .count1 , vim . v . count1 .. config .mappings .org .org_timestamp_up )
185185end
186186
187187function OrgMappings :timestamp_down ()
188- return self :_adjust_date_part (' -' , vim .v .count1 , config .mappings .org .org_timestamp_down )
188+ return self :_adjust_date_part (' -' , vim .v .count1 , vim . v . count1 .. config .mappings .org .org_timestamp_down )
189189end
190190
191191function OrgMappings :_adjust_date_part (direction , amount , fallback )
You can’t perform that action at this time.
0 commit comments