Typing Options

This command specifies typing and editing options. It activates the Typing page of the Preferences dialog box.

Highlight matching parentheses while typing

Source Insight will momentarily highlight up to the matching parentheses or brace when you type a closing parentheses or brace. This is useful for seeing that you are matching up your braces and parentheses while typing new source code.

Always use Symbol Windows

Source Insight will automatically attach a symbol window to each new window it opens, if the file is setup to be parsed for symbols in the Document Options dialog box. Each document type can also control whether it uses a symbol window.

Keep cursor in window when paging up and down

If enabled, then the insertion point cursor will stay visible in the window as you page up and down. If disabled, then the insertion point will remain at its position in the text regardless of how you scroll.

Use block cursor shape

If checked, then the insertion point cursor will be block shaped instead of an I-beam.

Use Smart Tab for field selections

Causes the regular Tab key to invoke the Smart Tab command. See Smart Tab.

Typing tab indents line, regardless of selection

If checked, then typing a tab will indent the whole line. Also, the Back Tab command reverses the indent. If not checked, then typing a tab inserts a tab stop.

Typing tab replaces current selection

If checked, then inserting a tab will replace any selected text. For example, if you select a word, then type a tab, the tab replaces the word. If not checked, then the tab is inserted just to the left of the selection. In any case, if one or more whole lines are selected, then the tab key indents the whole lines.

Indent commands effect #-preprocessor statements

If checked, then the Indent Right and Indent Left commands will indent and outdent lines that start with C preprocessor statements, such as #ifdef. If this is not checked, then indenting has no effect on those lines.

Use intelligent paste

This modifies paste behavior in two ways when you are pasting whole lines of text:

If you have an insertion point anywhere on a line, then the pasted whole-lines are inserted above the current line. If the insertion point is at the end of a line, then the new lines are pasted below the current line.

The pasted text is automatically indented to match the destination. This works with Paste, Paste Line, Drag Line Up/Down commands, the Clip Window, and drag and drop.

You also can enable intelligent paste on a per-document type basis in the Document Options dialog box. See also “Document Options”.

Always select pasted text after pasting whole lines

If checked, then when you paste whole-lines, they are selected after pasting.

After pasting, select:

This indicates where the selection should end up after using a paste command.

Auto Completion

This section customizes the way the auto completion feature works.

The auto completion window appears after you type a character. Its purpose is to reduce the number of characters you have to type by automatically providing a list of possible identifiers to insert. The symbols that appear in the completion window depend on the context, such as the cursor position, or the type of variable being referred to.

Use automatic symbol completion window

Enables the auto completion window. If this option is disabled, then you can still use auto completion by invoking it manually with the Complete Symbol command.

Use detailed completion window

The auto completion window shows details about functions, such as their parameter lists.

Insert parameters for functions

The parameter list for a function is inserted along with the name of the function. This only happens if there isn’t a parenthesized list of parameters already to the right of the insertion point.

Insert spaces between parameters

A space character is inserted between function parameters. If not checked, then parameters are inserted inserted with no intervening spaces.

Insert space after function name

A space character is inserted after the function name and before the open parentheses.

Use completion window inside comments

Enables the auto completion feature while you are typing into a comment. If this option is disabled, then you can still use auto completion by invoking it manually with the Complete Symbol command.

Use case-sensitive matching

The auto completion window will list only symbol names that match the case as you have typed it. If this option is disabled, then all symbols that match your input, regardless of case, are listed. However, Source Insight will attempt to select the item that matches the case you typed.

Tab key selects item

If checked, then pressing the Tab key while the completion window is showing will insert the selected item in the list. If this option is disabled, then a Tab key just inserts a tab. In any case, the Enter key can also be used to insert the selected item.

Browsing in Lists

This section customizes the way that auto completion works while typing in symbol and file lists.

Match syllables while typing

Enables syllable matching by default. If this option is disabled, you can still match syllables by inserting a space character first, followed by your input.

Match members while typing

Class and struct members are matched according to your input. A full symbol name is like a path that starts with the symbol’s top-most container. For example, a class member might be named MyClass.member. Enabling this option will allow you to just type “member”. If disabled, then only full symbol names are matched. You can still use this feature, even if disabled, by prefixing your input with a dot (‘.’), like this:

.member