summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua/thesiahxyz/utils/markdown.lua
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-19 18:34:13 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-19 18:34:13 +0900
commit307fceea38b7352a79b0bdb87025a34b76973867 (patch)
tree382eb3e6a11973bc2c6ba33eee14d43ec2a9566b /ar/.config/TheSiahxyz/lua/thesiahxyz/utils/markdown.lua
parentb66f68b8c014a3041c936ee9de1b57db5bcb50fb (diff)
updates
Diffstat (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/utils/markdown.lua')
-rw-r--r--ar/.config/TheSiahxyz/lua/thesiahxyz/utils/markdown.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/utils/markdown.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/utils/markdown.lua
deleted file mode 100644
index 1b1c591..0000000
--- a/ar/.config/TheSiahxyz/lua/thesiahxyz/utils/markdown.lua
+++ /dev/null
@@ -1,26 +0,0 @@
-local M = {}
-
--- foldtext for Neovim < 0.10.0
-function M.foldtext()
- return vim.api.nvim_buf_get_lines(0, vim.v.lnum - 1, vim.v.lnum, false)[1]
-end
-
--- optimized treesitter foldexpr for Neovim >= 0.10.0
-function M.foldexpr()
- local buf = vim.api.nvim_get_current_buf()
- if vim.b[buf].ts_folds == nil then
- -- as long as we don't have a filetype, don't bother
- -- checking if treesitter is available (it won't)
- if vim.bo[buf].filetype == "" then
- return "0"
- end
- if vim.bo[buf].filetype:find("dashboard") then
- vim.b[buf].ts_folds = false
- else
- vim.b[buf].ts_folds = pcall(vim.treesitter.get_parser, buf)
- end
- end
- return vim.b[buf].ts_folds and vim.treesitter.foldexpr() or "0"
-end
-
-return M