ipycompletionproposal.java
来自「Python Development Environment (Python I」· Java 代码 · 共 29 行
JAVA
29 行
/*
* Created on Apr 25, 2005
*
* @author Fabio Zadrozny
*/
package org.python.pydev.editor.codecompletion;
/**
* @author Fabio Zadrozny
*/
public interface IPyCompletionProposal {
int PRIORITY_LOCALS = -1;
//those have local priorities, but for some reason have a lower priority than locals
int PRIORITY_LOCALS_1 = 0;
int PRIORITY_LOCALS_2 = 1;
int PRIORITY_DEFAULT = 10;
int PRIORITY_GLOBALS = 50;
int PRIORITY_PACKAGES = 100;
/**
* @return the priority for showing this completion proposal, so that lower priorities are
* shown earlier in the list.
*/
public int getPriority();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?