Skip to content

Commit

Permalink
feat: add new hints resolve #90 (#94)
Browse files Browse the repository at this point in the history
* fix(rules): issue #90

* fix(keymap): fix

* stylua

* Update config.lua

Escape
  • Loading branch information
olivertzeng committed Jun 4, 2024
1 parent 6931ec4 commit c6bd459
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lua/hardtime/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,24 @@ M.config = {
end,
length = 2,
},
["d%$"] = {
message = function()
return "Use D instead of d$"
end,
length = 2,
},
["y%$"] = {
message = function()
return "Use Y instead of y$"
end,
length = 2,
},
["c%$"] = {
message = function()
return "Use C instead of c$"
end,
length = 2,
},
["%^i"] = {
message = function()
return "Use I instead of ^i"
Expand Down

0 comments on commit c6bd459

Please sign in to comment.