about summary refs log tree commit diff stats
path: root/src/buffer
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-01-06 20:16:18 +0100
committerbptato <nincsnevem662@gmail.com>2023-01-06 22:24:01 +0100
commit8323cf214819297cae0ce0908e339a78a289434a (patch)
treea861b10713ae244ae593e8988087a8aa449a3375 /src/buffer
parent85ec984f948623662a76a3fbfe50354f6be9612e (diff)
downloadchawan-8323cf214819297cae0ce0908e339a78a289434a.tar.gz
Slightly refactor commandMode
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 d5c6becf..3315b79c 100644
--- a/src/buffer/container.nim
+++ b/src/buffer/container.nim
@@ -672,7 +672,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.location.host & "...")
   container.iface.connect().then(proc(res: ConnectResult): auto =
     let info = container.loadinfo
     if res.code != -2: