Merge pull request #14910 from folke/lsp_fences_docs

style(lsp): make get_markdown_fences private
This commit is contained in:
Michael Lingelbach 2021-06-25 11:04:44 -07:00 committed by GitHub
commit 3b44b21894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1059,6 +1059,7 @@ end
-- Generates a table mapping markdown code block lang to vim syntax,
-- based on g:markdown_fenced_languages
-- @return a table of lang -> syntax mappings
-- @private
local function get_markdown_fences()
local fences = {}
for _, fence in pairs(vim.g.markdown_fenced_languages or {}) do