From 13e8547fa7825aef0c8a07c67dcad78921c5a820 Mon Sep 17 00:00:00 2001 From: Simon Hafner Date: Fri, 8 May 2015 19:47:34 +0500 Subject: [PATCH] hardcoded order --- compiler/nimsuggest/nimsuggest.nim | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/compiler/nimsuggest/nimsuggest.nim b/compiler/nimsuggest/nimsuggest.nim index 7ba3379c35..ad3b5bf0de 100644 --- a/compiler/nimsuggest/nimsuggest.nim +++ b/compiler/nimsuggest/nimsuggest.nim @@ -65,15 +65,13 @@ proc parseQuoted(cmd: string; outp: var string; start: int): int = i += parseUntil(cmd, outp, seps, i) result = i -# make sure it's in the same order as the proc below -let order: SexpNode = - sexp(@["section", "symkind", "qualifiedPath", "filePath", "forth", "line", "column", "doc"].map(newSSymbol)) - proc sexp(s: IdeCmd): SexpNode = sexp($s) proc sexp(s: TSymKind): SexpNode = sexp($s) proc sexp(s: Suggest): SexpNode = + # If you change the oder here, make sure to change it over in + # nim-mode.el too. result = convertSexp([ s.section, s.symkind,