diff options
author | Juan M Gómez <info@jmgomez.me> | 2024-03-04 08:58:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 09:58:06 +0100 |
commit | 2081da3207b004e21537cf079c8e7f583bc66d76 (patch) | |
tree | 972ba6e3200c14430fb07d94b41821eccd9bfcef | |
parent | a61943490479daf9716f310e94130b016a99abe0 (diff) | |
download | Nim-2081da3207b004e21537cf079c8e7f583bc66d76.tar.gz |
makes nimsuggest listen on localhost by default (#23351)
-rw-r--r-- | nimsuggest/nimsuggest.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nimsuggest/nimsuggest.nim b/nimsuggest/nimsuggest.nim index e69731b27..e1bb0d5aa 100644 --- a/nimsuggest/nimsuggest.nim +++ b/nimsuggest/nimsuggest.nim @@ -92,7 +92,7 @@ type var gPort = 6000.Port - gAddress = "" + gAddress = "127.0.0.1" gMode: Mode gEmitEof: bool # whether we write '!EOF!' dummy lines gLogging = defined(logging) |