about summary refs log tree commit diff stats
path: root/src/buffer
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-01-02 00:45:18 +0100
committerbptato <nincsnevem662@gmail.com>2023-01-02 00:45:18 +0100
commit9edd436512aabd6db54acf154735f6d2ed814a8b (patch)
tree5f4d9925861d649065653965c22558a48de97a13 /src/buffer
parent788ba39b6e5ce9d72956dbc451e9cad87d03b11e (diff)
downloadchawan-9edd436512aabd6db54acf154735f6d2ed814a8b.tar.gz
Fix connection load info not being shown
Diffstat (limited to 'src/buffer')
-rw-r--r--src/buffer/container.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer/container.nim b/src/buffer/container.nim
index a42422e5..570dbce8 100644
--- a/src/buffer/container.nim
+++ b/src/buffer/container.nim
@@ -669,7 +669,7 @@ proc onload(container: Container, res: LoadResult) =
           container.setCursorXY(res.x, res.y))
 
 proc load(container: Container) =
-  container.setLoadInfo("Connecting to " & $container.source.location & "...")
+  container.setLoadInfo("Connecting to " & $container.source.location)
   container.iface.connect().then(proc(res: ConnectResult): auto =
     let info = container.loadinfo
     if res.code != -2: