diff options
| author | ThePrimeAgain <theprimeagain@theprimeagain.com> | 2025-12-06 11:39:09 -0700 |
|---|---|---|
| committer | ThePrimeAgain <theprimeagain@theprimeagain.com> | 2025-12-06 11:39:09 -0700 |
| commit | 2c40101e1369061e95690ea5509199c7e42413a6 (patch) | |
| tree | 6702247e336521e064a2c0b438b58b4b6313afab | |
| parent | 045ac5e104765415337d691ec923afa1cbd032c8 (diff) | |
| download | a4-2c40101e1369061e95690ea5509199c7e42413a6.tar.xz a4-2c40101e1369061e95690ea5509199c7e42413a6.zip | |
check
| -rw-r--r-- | lua/99/ops/marks.lua | 1 | ||||
| -rw-r--r-- | scratch/refresh.lua | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lua/99/ops/marks.lua b/lua/99/ops/marks.lua index 99b7eb2..bea4607 100644 --- a/lua/99/ops/marks.lua +++ b/lua/99/ops/marks.lua @@ -43,6 +43,7 @@ function Mark:set_virtual_text(lines) vim.api.nvim_buf_get_extmark_by_id(self.buffer, nsid, self.id, {}) assert(#pos > 0, "extmark is broken. it does not exist") local row, col = pos[1], pos[2] + Logger:warn("set_virt", "pos", pos) for _, line in ipairs(lines) do table.insert(self.lines, line) diff --git a/scratch/refresh.lua b/scratch/refresh.lua index 076793f..5a6cee0 100644 --- a/scratch/refresh.lua +++ b/scratch/refresh.lua @@ -43,7 +43,7 @@ function create_mark() local Logger = require("99.logger.logger") local Level = require("99.logger.level") Logger:configure({ - level = Level.FATAL, + level = Level.WARN, path = nil, }) local buffer = vim.api.nvim_get_current_buf() |
