-
Notifications
You must be signed in to change notification settings - Fork 56
Source file editor
Vadim Lopatin edited this page Jan 15, 2016
·
2 revisions
- D language source code syntax highlight (basic)
- Indent / unindent text with Tab and Shift+Tab or Ctrl+[ and Ctrl+]
- Toggle line or block comments by Ctrl+/ and Ctrl+Shift+/
- D source code autocompletion by Ctrl+Space or Ctrl+Shift+G (using DCD)
- D source code Go To Definition by Ctrl+G or F12 (using DCD)
- D source code Smart Indents
- Select word by mouse double click
Go to Edit/Preferences/Editor/Text editor
You can change following settings:
- Tab size
- Use spaces for tabs
- Smart indents
- Smart indent after paste
In editor, you can change font size with Ctrl+Mouse wheel or Ctrl/+ Ctrl/- (numpad).
Indent / unindent text with Tab and Shift+Tab or Ctrl+[ and Ctrl+]
DlangIDE uses DCD (D completion daemon) library for performing symbol lookups.
D source code autocompletion by Ctrl+Space or Ctrl+Shift+G (using DCD)
D source code Go To Definition by Ctrl+G or F12 (using DCD)