IntelliSense & Tools
The Gokino editor integrates intelligent tools to help you write code faster and more accurately.
IntelliSense (Intelligent Code Completion)
The system automatically suggests code based on the context:
- Function Suggestions: Typing
Serial.will list available methods such asbegin(),println(). - Variable Suggestions: Typing the first few characters of a declared variable will suggest its completion.
- Code Snippets: Supports quick code templates for
forloops andif/elsestructures.
Linting & Formatting
- Red Squiggles: Indicate syntax errors. Hover over them to see detailed error messages.
- Format Code: The IDE integrates a tool to automatically align and beautify the source code (Auto-format), helping to standardize the code structure. It is optimized to safely preserve string literals and URLs.
Breadcrumb Bar
Located just below the Tab bar, it displays the path of the current file and the cursor's position (Symbol Path).
- Helps you know which function or class you are in within a long file.
- Click on the elements in the breadcrumb to navigate quickly.
Search Panel
A powerful search tool is integrated directly into the editor.
- Supports text search and regex (regular expressions).
- Supports batch Replace.