Sublime Text 4 编辑代码,在新视图中显示过程

发布于 2025-01-17 06:47:35 字数 73 浏览 0 评论 0原文

在编辑一些代码(在我的例子中是Python)时,可以右键单击本地过程名称并选择转到定义。是否可以将过程显示在当前视图旁边的新视图中?

Whilst editing some code (Python in my case), a local procedure name can be right-clicked and goto definition chosen. Is it possible to have the procedure displayed in a new view beside the current view?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜未央樱花落 2025-01-24 06:47:35

这是使用 LSP 包与Python 特定语言服务器。我使用 LSP-pyright,这是 Microsoft 使用的服务器VS Code 中默认,但 LSP-pylsp 也是一个不错的选择选项。

当您将鼠标悬停在标识符上时,无论它是变量还是函数,都会弹出一个小窗口(称为幻影),其中包含多个链接,第一个是“定义”。单击该按钮,将打开一个新视图,其中包含包含函数定义的源文件。

This is the default behavior when using the LSP package, in conjunction with a Python-specific language server. I use LSP-pyright, which is the server Microsoft uses by default in VS Code, but LSP-pylsp is also a good option.

When you mouse over an identifier, whether it's a variable or a function, a small window (called a phantom) pops up with several links, the first one being "Definition". Click on that and a new view will open up with the source file containing the function's definition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文