diff options
author | Folke Lemaitre <folke.lemaitre@gmail.com> | 2021-06-25 18:32:00 +0200 |
---|---|---|
committer | Folke Lemaitre <folke.lemaitre@gmail.com> | 2021-06-25 18:32:00 +0200 |
commit | 28dde1038fea0b5750a7c0250ee047c032175448 (patch) | |
tree | 087ea2247ea7664e90e9edf8707cbca60534df4d /runtime/lua/vim/lsp/util.lua | |
parent | 5d792701cf3c8b9a0299ff1e90c843082c590d04 (diff) | |
download | rneovim-28dde1038fea0b5750a7c0250ee047c032175448.tar.gz rneovim-28dde1038fea0b5750a7c0250ee047c032175448.tar.bz2 rneovim-28dde1038fea0b5750a7c0250ee047c032175448.zip |
style(lsp): make get_markdown_fences private
Diffstat (limited to 'runtime/lua/vim/lsp/util.lua')
-rw-r--r-- | runtime/lua/vim/lsp/util.lua | 1 |
1 files changed, 1 insertions, 0 deletions
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 |