diff options
author | Simon Hafner <hafnersimon@gmail.com> | 2015-04-14 02:47:51 -0500 |
---|---|---|
committer | Simon Hafner <hafnersimon@gmail.com> | 2015-04-14 02:49:16 -0500 |
commit | 49b953f318b8183056bc67d50571910026d05c43 (patch) | |
tree | 4d2198d1913a412ef11b42ebe59dc3b4e19c024e /compiler/nimsuggest | |
parent | 8fa8f137412f535784a5222f60d45b3e0439ae0a (diff) | |
download | Nim-49b953f318b8183056bc67d50571910026d05c43.tar.gz |
sexp also accepts cons
Diffstat (limited to 'compiler/nimsuggest')
-rw-r--r-- | compiler/nimsuggest/nimsuggest.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/nimsuggest/nimsuggest.nim b/compiler/nimsuggest/nimsuggest.nim index b45ca475c..ca856ed57 100644 --- a/compiler/nimsuggest/nimsuggest.nim +++ b/compiler/nimsuggest/nimsuggest.nim @@ -11,7 +11,7 @@ import strutils, os, parseopt, parseUtils import options, commands, modules, sem, passes, passaux, msgs, nimconf, - extccomp, condsyms, lists, net, rdstdin + extccomp, condsyms, lists, net, rdstdin, sexp const Usage = """ Nimsuggest - Tool to give every editor IDE like capabilities for Nim @@ -23,6 +23,7 @@ Options: --address:HOST binds to that address, by default "" --stdin read commands from stdin and write results to stdout instead of using sockets + --sexp talk in sexp, mainly for emacs epc. The server then listens to the connection and takes line-based commands. |