Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Documentation/English/Reference/ide_tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@
quickly insert into your source code with a double-click. It allows you to manage the
codes in different directories, and put a comment to each code. This tool is perfect to
manage small, often used code parts.
@LineBreak
@LineBreak
Normally, the cursor will be moved to the end of the inserted code. You can specify
a different cursor position by including a caret symbol (^) within the template code.

@LineBreak
@LineBreak
Expand Down
2 changes: 1 addition & 1 deletion PureBasicIDE/Declarations.pb
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Declare.s GetContinuationLine(Index, *Offset.INTEGER = 0, *Source.SourceFile = 0
Declare SetLine(Index, NewLine$) ; replace the indexed line with the given text (and highlight it again)
Declare CreateEditorGadget() ; create the editing gadget for this source (must call ChangeActiveSource() right after creating the gadget!)
Declare SetReadOnly(Gadget, State) ; set the editing gadget to readonly
Declare InsertCodeString(String$) ; insert given string at the current position (also converts to utf8 if needed)
Declare InsertCodeString(String$, MoveCursor = #False) ; insert given string at the current position (also converts to utf8 if needed)
Declare Undo() ; perform the standard editior function
Declare Redo()
Declare Cut()
Expand Down
Loading