mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-07-05 13:15:32 +02:00
feat(term): add select method
Adds select() method to Terminal. Method behaves the same way as TextEdit's select method.
This commit is contained in:
parent
43303a51bf
commit
dd118d72f3
5 changed files with 112 additions and 8 deletions
|
@ -74,6 +74,8 @@ namespace godot
|
|||
|
||||
void clear();
|
||||
|
||||
void select(const int p_from_line, const int p_from_column, const int p_to_line, const int p_to_column);
|
||||
|
||||
String copy_all();
|
||||
String copy_selection();
|
||||
void set_copy_on_selection(const bool p_enable);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue