Skip to content

Commit

Permalink
docs: typo in example
Browse files Browse the repository at this point in the history
  • Loading branch information
vdbe committed Nov 1, 2024
1 parent 117c0c5 commit c841bac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ vim.keymap.set("i", "<c-d>", function()
if require("care").api.doc_is_open() then
require("care").api.scroll_docs(-4)
else
vim.api.nvim_feedkeys(vim.keycode("<c-f>"), "n", false)
vim.api.nvim_feedkeys(vim.keycode("<c-d>"), "n", false)
end
end)
```
Expand Down
2 changes: 1 addition & 1 deletion minimal_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ require("lazy.minit").repro({
if require("care").api.doc_is_open() then
require("care").api.scroll_docs(-4)
else
vim.api.nvim_feedkeys(vim.keycode("<c-f>"), "n", false)
vim.api.nvim_feedkeys(vim.keycode("<c-d>"), "n", false)
end
end)
end,
Expand Down

0 comments on commit c841bac

Please sign in to comment.