william

Keep Calm and Markdown.

nvim tree input completion

nvim-tree 删除/垃圾箱确认提示中禁用 blink-cmp 自动补全

问题

在 nvim-tree 中执行 Remove/Trash 操作时,dressing.nvim 会弹出确认对话框(DressingInput buffer,filetype = "DressingInput")。用户输入 y/n 时,blink-cmp 会在这个 buffer 中触发自动补全,干扰确认操作。

opencode.nvim 窗口调整

opencode.nvim 窗口宽度修复 问题opencode.nvim 配置了 window_width = 0.40(右边窗口占页面 40%),但实际打开后右边窗口始终占据 50% 宽度。 根因分析 根因 1:

reasonix: D-Bus依赖

Reasonix 启动卡死问题排查与修复

症状

执行 reasonix 命令行后终端卡死,无法正常启动。reasonix --help 可以正常输出,但 reasonix doctor、交互式会话等操作均会永久挂起。

gdb 编译代码与调试分离

Remote GDB Debugging with C++ — Source Code StrategiesWhen C++ code is compiled on a dev machine (A) and debugged on a target machine (B), GDB needs to find matching source files. Here are the options, from best to worst. 1. Best: Use gdbserver (no source copy to target)Run a thin gdbserver on the target; connect full GDB from the dev machine where sources live. 1 2 3 4 5
0%