Skip to content
TECHNICALLYARTIST
FAB

Editing & Navigation

Beyond the AI features, the panes are real code editors. This page covers the everyday editing and navigation tools.

Press Ctrl + F to open the find and replace panel for the active pane. Search within the loaded function, step through matches, and replace one or all.

Press Ctrl + G to open the go-to-line box, type a line number, and jump straight there. Handy in longer function bodies.

The editor follows your indentation preference and keeps blocks tidy as you type:

ActionShortcut
Indent the current lineTab
Unindent the current lineShift + Tab
  • Choose Tabs or Spaces with Indentation Type in settings.
  • Set how wide a tab is (and how many spaces a soft tab inserts) with Tab Space Count (default 4).
  • Pressing Enter carries the current indentation onto the new line, and typing an opening { auto-expands into an indented block with the closing }.
  • Backspace is indentation-aware, removing a level of leading whitespace in one press where appropriate.

Both panes use a built-in C++ tokenizer. Pick a look with the Color Preset in settings:

PresetNotes
Midnight StudioThe default.
Cosmic CodeA warmer alternative.
CustomSet every token color yourself.

Switching to Custom unlocks individual colors for text, keywords, comments, strings, numbers, types, function names, and class names, plus the word-highlight color, the editor tab colors, and the modified-file indicator color. You can also set the Font Size and a Bold Font toggle. See Settings for the full color list.

Matching occurrences of the word under the cursor are highlighted across the pane, which makes it easy to see every use of a variable at a glance. The highlight color is one of the customizable colors above.

The editor’s right-click menu includes Open in Explorer, which opens the location of the current file in Windows File Explorer, a quick bridge to your IDE or the rest of the file.

Every shortcut on this page (find, go to line, indent, unindent, and more) is remappable under Project Settings → Plugins → Code Editor → Keyboard Shortcuts. The full default list is on the Keyboard Shortcuts page.