Basic Key Combos - Slapparoo/TempleOS-EE GitHub Wiki

Some basic key combos

<alt><shift>+a Close the auto complete window
<alt>+a open the auto complete window
<alt>+m Maximise window
<ctrl><alt>+n Next Window
<ctrl>+d file manager
F1 Help

Scroll up and down with the cursor keys
<space> over a file or directory to open
<esc> save and exit file
<ctrl><alt>+t New Window
<ctrl><alt>+x close window

F5 Compile and run

Editing Key combos

<ctrl>+<cursor right> end of line
<ctrl>+<cursor left> start of line
<shift>+<cursor keys> highlight text
<ctrl>+<insert> copy
<shift>+<insert> paste
<ctrl>+f find - enter search term - <esc> to action
<ctrl>+g goto line number
<ctrl>+l text formatting menu (<space> on the abort at the bottom to exit without making a selection)
<ctrl>+t toggle text raw/formatting

Key code help and additional resources

while the autocomplete menu is present you can get help about all key code combinations, just hold down any of these key combinations and a popup will appear with the complete list of combos

<ctrl>
<ctrl><shift>
<ctrl><alt>
<alt>
<alt><shift>
<ctrl><alt><shift>

To Get list the full key map enter the following at the command prompt

KeyMap;

Autocomplete tricks

When the auto complete window is open you can navigate into code, when the curser is at the end of a function name and the function name appears in the autocomplete window press <ctrl><shift><f(#)> and you will navigate into the source file to the line where the function is declared.

So if it type Ed at the command prompt with the Autocomplete window open, ed appears as the second item in the list as F02 Ed if I press <ctrl><shift><F2> I navigate to the Ed function declaration.

Which is the same as:

Man("Ed");

which will navigate you to the source code definition of the Ed method.

⚠️ **GitHub.com Fallback** ⚠️