我以为会是:
window.run_command("find_all", {"pattern": "a"})
查找当前缓冲区中的所有“a”字符(我的意思是与使用查找面板中的“查找全部”的效果相同;最终选择缓冲区中的每个“a”字符),但它只是什么也没做。
(我测试了用类似的东西替换它:
window.run_command("move", {"by": "lines", "forward": True})
确实有效,所以我至少得到了正确的代码上下文。)
我以为会是:
window.run_command("find_all", {"pattern": "a"})
查找当前缓冲区中的所有“a”字符(我的意思是与使用查找面板中的“查找全部”的效果相同;最终选择缓冲区中的每个“a”字符),但它只是什么也没做。
(我测试了用类似的东西替换它:
window.run_command("move", {"by": "lines", "forward": True})
确实有效,所以我至少得到了正确的代码上下文。)