albatros
I already bought 4coder, I'm waiting for two features to be included, or made possible to do :
- Keyboard Macro
- Code snippets (a link for those who would like to know what it looks like)
Just to be sure, those are in the pipeline ?
(I also needed to know if access to the code would be given once development stops and this has been happily clarified to be the case recently)
With the customization layer both are possible
If with macros you mean arbitrary sequence of commands that can run of a single keystroke, that's the original goal of the customization layer. It even allows arbitrary code execution because the customization layer is a dll that gets loaded.
Code snippets seam to be expansion from shorthands to full code, either automatically or triggered by keystroke. That is easy by looking back and matching the text before the cursor with a pattern and then replacing it. I believe there is a built in C parser that will even let you only activate them inside certain contexts (top level, inside function, etc.)