1 Interface Essentials
2 Languages
3 Interface Reference
4 Extending Dr Scheme
Index
On this page:
1.3.1 Tabbed Editing
Version: 4.0.2

 

1.3 The Editor

In Scheme mode, especially, DrScheme’s editor provides special support for managing parentheses in a program. When the blinking caret is next to a parenthesis, DrScheme shades the region between the parenthesis and its matching parenthesis. This feature is especially helpful when for balancing parentheses to complete an expression.

Although whitespace is not significant in Scheme, DrScheme encourages a particular format for Scheme code. When you type Enter or Return, the editor inserts a new line and automatically indents it. To make DrScheme re-indent an existing line, move the blinking caret to the line and hit the Tab key. (The caret can be anywhere in the line.) You can re-indent an entire region by selecting the region and typing Tab.

DrScheme also rewrites parenthesis as you type them, in order to make them match better. If you type a closing parenthesis ), a closing square bracket ], or a closing curley brace }, and if DrScheme can match it back to some earlier opening parenthesis, bracket, or brace, then DrScheme changes what you type to match. DrScheme also rewrites open square brackets, usually to an open parenthesis. There are some exceptions where opening square brackets are not automatically changed to parentheses:

The upshot of DrScheme’s help is that you can always use the (presumably unshifted) square brackets on your keyboard to type parenthesis. For example, when typing

  (define (length l)

    (cond

     [(empty? l) 0]

     [else (+ 1 (length (rest l)))]))

If you always type [ and ] where any of the square brackets or parentheses appear, DrScheme will change the square brackets to match the code above.

Of course, these features can be disabled and customized in the preferences dialog; see Preferences. Also, in case DrScheme does not produce the character you want, holding down the control key while typing disables DrScheme’s parenthesis, brace, and bracket converter.

1.3.1 Tabbed Editing

DrScheme’s allows you to edit multiple files in a single window via tabs. The File|New Tab menu item creates a new tab to show a new file. Each tab has its own interactions window.

In the General sub-pane of the Editing pane in the preferences window, a checkbox labelled Open files in separate tabs causes DrScheme to open files in new tabs in the frontmost window, rather than opening a new window for the file.

The key bindings Control-Pageup and Control-Pagedown move between tabs. Under Mac OS X, Command-Shift-Left and Command-Shift-Right also move between tabs.