mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 13:07:48 +00:00
nimsuggest: don't add CRLF to replies (#13545)
This is already sent by replTcp after the message is sent.
This commit is contained in:
@@ -252,10 +252,10 @@ proc toSocket(stdoutSocket: Socket) {.gcsafe.} =
|
||||
let res = results.recv()
|
||||
case res.section
|
||||
of ideNone: break
|
||||
of ideMsg: stdoutSocket.send(res.doc & "\c\L")
|
||||
of ideKnown: stdoutSocket.send($(res.quality == 1) & "\c\L")
|
||||
of ideProject: stdoutSocket.send(res.filePath & "\c\L")
|
||||
else: stdoutSocket.send($res & "\c\L")
|
||||
of ideMsg: stdoutSocket.send(res.doc)
|
||||
of ideKnown: stdoutSocket.send($(res.quality == 1))
|
||||
of ideProject: stdoutSocket.send(res.filePath)
|
||||
else: stdoutSocket.send($res)
|
||||
|
||||
proc toEpc(client: Socket; uid: BiggestInt) {.gcsafe.} =
|
||||
var list = newSList()
|
||||
|
||||
Reference in New Issue
Block a user