PyCharm has reached to 2.7 now. you can customize your key mapping through "Kepmap" under "Settings" ->"Editor". I have a check, some of your requirement can be met by this.
Not a pro on this but I think you have to use the module name preceding the method you want to call. For example to call a function named doStuff in the settings module call settings.doStuff().
To call the methods directly you need to use "from settings import *". But I think this method is frowned upon.
根据官方 PyCharm 功能页面,您按 Ctrl-Space 即可自动完成。例如,如果您输入设置,然后按 Ctrl-Space,我相信 IDE 会向您提供选项。
According to the official PyCharm feature page you press Ctrl-Space to get auto completion. So for example if you type settings and then press Ctrl-Space I believe the IDE will present you with options.
发布评论
评论(3)
PyCharm 目前已经达到 2.7。您可以通过“设置”->“编辑器”下的“Kepmap”自定义键映射。我有一张支票,这个可以满足你的一些要求。
这是一个参考链接(http://www.jetbrains.com/pycharm /webhelp/configuring-keyboard-shortcuts.html)。
希望以上对您有所帮助。
PyCharm has reached to 2.7 now. you can customize your key mapping through "Kepmap" under "Settings" ->"Editor". I have a check, some of your requirement can be met by this.
Here is a reference link (http://www.jetbrains.com/pycharm/webhelp/configuring-keyboard-shortcuts.html).
Hope above helpful to you.
在这方面不是专业人士,但我认为您必须在要调用的方法之前使用模块名称。例如,要在设置模块中调用名为 doStuff 的函数,请调用 settings.doStuff()。
要直接调用方法,您需要使用“from settings import *”。但我认为这种方法是不受欢迎的。
Not a pro on this but I think you have to use the module name preceding the method you want to call. For example to call a function named doStuff in the settings module call settings.doStuff().
To call the methods directly you need to use "from settings import *". But I think this method is frowned upon.
根据官方 PyCharm 功能页面,您按 Ctrl-Space 即可自动完成。例如,如果您输入设置,然后按 Ctrl-Space,我相信 IDE 会向您提供选项。
According to the official PyCharm feature page you press Ctrl-Space to get auto completion. So for example if you type settings and then press Ctrl-Space I believe the IDE will present you with options.