From 28dde1038fea0b5750a7c0250ee047c032175448 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 25 Jun 2021 18:32:00 +0200 Subject: style(lsp): make get_markdown_fences private --- runtime/lua/vim/lsp/util.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/lua/vim') diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua index 43542949d8..4de0062737 100644 --- a/runtime/lua/vim/lsp/util.lua +++ b/runtime/lua/vim/lsp/util.lua @@ -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 -- cgit