summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJuan M Gómez <info@jmgomez.me>2024-03-04 08:58:06 +0000
committerGitHub <noreply@github.com>2024-03-04 09:58:06 +0100
commit2081da3207b004e21537cf079c8e7f583bc66d76 (patch)
tree972ba6e3200c14430fb07d94b41821eccd9bfcef
parenta61943490479daf9716f310e94130b016a99abe0 (diff)
downloadNim-2081da3207b004e21537cf079c8e7f583bc66d76.tar.gz
makes nimsuggest listen on localhost by default (#23351)
-rw-r--r--nimsuggest/nimsuggest.nim2
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)