Files
nvimdots/lua/config/testfold.lua
T
Zacharias-Brohn ba3510d2a6 new
2025-08-09 20:34:07 +02:00

16 lines
287 B
Lua

local M = {}
function M.foldexpr()
local lnum = vim.v.lnum
local line = vim.fn.getline( lnum )
if line:find( "<think>", 1, true ) then
return "a1"
elseif line:find( "</think>", 1, true ) then
return "s1"
else
return "="
end
end
return M