Skip to content

Commit

Permalink
feat(mappings): add support for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vyfor committed Dec 7, 2024
1 parent cd04a8c commit cfe563f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lua/cord/mappings/docs.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
local M = {}

local mappings = {
help = { 'default', 'Vim documentation' },
help_ru = { 'default', 'Vim documentation' },
man = { 'default', 'Man pages' },
}

M.get = function(filetype) return mappings[filetype] end

return M

0 comments on commit cfe563f

Please sign in to comment.