branch: externals/csharp-mode commit 8dd56f4c5649dbed3684027be8909616afa90334 Author: Jostein Kjønigsen <jost...@kjonigsen.net> Commit: Jostein Kjønigsen <jost...@kjonigsen.net>
Reproduce issue #42. --- test-files/region-fontification.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/test-files/region-fontification.cs b/test-files/region-fontification.cs new file mode 100644 index 0000000..8012948 --- /dev/null +++ b/test-files/region-fontification.cs @@ -0,0 +1,15 @@ +using System; + +public class Test +{ + public void Test() + { + #region fontifies correctly + string foo = "bar"; + #endregion + + #region does'nt fontify correctly + string foo = "bar"; + #endregion + } +} \ No newline at end of file