branch: externals/csharp-mode commit e79d69419123c7b4fece163a78f7ad40a6c47c68 Author: Theodor Thornhill <t...@thornhill.no> Commit: Theodor Thornhill <t...@thornhill.no>
Add standard query operators kwds --- csharp-mode.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/csharp-mode.el b/csharp-mode.el index 1f0c010..2cd938a 100644 --- a/csharp-mode.el +++ b/csharp-mode.el @@ -126,6 +126,10 @@ (c-lang-defconst c-type-list-kwds csharp '("using")) +(c-lang-defconst c-other-kwds + csharp '("select" "from" "where" "join" "in" "on" "equals" "into" + "orderby" "descending" "group")) + (c-lang-defconst c-colon-type-list-kwds csharp '("class" "struct" "interface"))