When I hit Ctrl+E+D or Ctrl+M+Space (CodeMaid), I want Visual Studio to add newlines before and after #region and #endregion in following languages: C#, CSS, JS
How I can make it happen?
For ex:
#region
Codes
#endregion
BTW, now Visual Studio remove any inserted enter on #regions.

By default, CodeMaid will insert blank line padding before/after
#regionand#endregionstatements. There is additional logic that will prevent that from happening based on the surrounding context (e.g. if it's the first item inside a set of braces).Note: This only applies to C#. I'm not sure what you mean by CSS and JS as neither of those languages support
#pragmastatements to my knowledge.