函数参数提示 Eclipse 与 PyDev
似乎是新手的问题,但我找不到答案。 当光标位于函数调用中时,我可以通过按 Ctrl+Shift+Space 以某种方式看到函数参数提示,就像在 Visual Studio 中一样
someObj.doSomething("Test", "hello, wold", 4|)
: 是我的光标位置。 当我开始输入函数名称时,Ctrl+Spase 会显示该信息,但我想随时查看函数的参数列表。 我正在使用最新的 Eclipse 和 PyDev
Seems like newbie's question, but I just can't find the answer. Can I somehow see function parameters hint like in Visual Studio by pressing Ctrl+Shift+Space when cursor is in function call like this:
someObj.doSomething("Test", "hello, wold", 4|)
where | is my cursor position. Ctrl+Spase shows me that information when I start typing function name, but I want to see function's parameters list at any time I want. I'm using latest available Eclipse and PyDev
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试在“
,
”后使用“CTRL+space
”,而不是在参数后。函数参数显示在“
(
”之后或“,
”+“CTRL+space
”之后。Try "
CTRL+space
" after a ',
', not after a parameter.The function parameters are displayed just after the '
(
' or after a ',
' + "CTRL+space
".参数将在“(”之后显示,这就是我多年来重新显示参数的方式。我最近发现“CTRL + Shift + Space”将在函数调用中的任何位置显示参数。为我节省了一些宝贵的时间。
Parameters will show up just after a '(', which is how I re-displayed mine for ages. I recently discovered that 'CTRL + Shift + Space' will show the parameters anywhere in a function call. Saved me some valuable seconds.