ABOUT
Increment Decrement Expansion is a small plug-in that immediately expands C-like operators such as: ++, --, /=, etc. For example, entering "Form1.Height++" in the editor immediately produces "Form1.Height := Form1.Height +" with an optional terminating semicolon.
FEATURES
- Automatic expansion of C-style increment and decrement operators ++ and --. This plug-in can optionally add a 1 to the resulting statement or position the cursor. For example, MyVar++ can be instructed to automatically expand into either MyVar := MyVar + 1 or MyVar := MyVar + | (with the "|" representing the cursor).
- Custom Options Page.
- Optional automatic expansion of the following operations: +=, -=, /=, *=, !=, and %=. For example, MyVar%= immediately expands to MyVar := MyVar mod | (with the "|" representing the cursor).
- Optional automatic placement of a ; at the end of the statement.
- Optional automatic expansion of two characters ;; into := (for example, MyVar;; immediately expands to MyVar:=).
- Respects the settings of the Code Style | Keywords and Spacing options page for placement of spaces around operators.