📄 iconsoleinputlistener.java
字号:
package org.python.pydev.debug.core;
import org.python.pydev.debug.model.AbstractDebugTarget;
/**
* This interface can be used to listen to what the user writes in the console when debugging.
*
*/
public interface IConsoleInputListener {
/**
* This method is called whenever a new line is written in the console while debugging.
*
* @param lineReceived this is the line that was written.
* @param target this is the target of the debug
*/
void newLineReceived(String lineReceived, AbstractDebugTarget target);
/**
* This method is called when there is a paste action in the console.
*
* @param text this is the text that was pasted
* @param target this is the target of the debug
*/
void pasteReceived(String text, AbstractDebugTarget target);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -