Skip to content

Commit

Permalink
v0.3.1, Changed prompt symbol to inim> Added πŸ‘‘ to welcome screen
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiRegiani committed Jul 25, 2018
1 parent 683fd42 commit 1d46d1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/inim.nim
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ proc getNimPath(): string =

proc welcomeScreen() =
stdout.setForegroundColor(fgCyan)
stdout.writeLine "INim ", INimVersion
stdout.writeLine "πŸ‘‘ INim ", INimVersion
stdout.write getNimVersion()
stdout.write getNimPath()
stdout.resetAttributes()
Expand Down Expand Up @@ -170,7 +170,7 @@ proc init(preload: string = nil) =

proc getPromptSymbol(): string =
if indentLevel == 0:
result = ">>> "
result = "inim> "
else:
result = "... "
# Auto-indent (multi-level)
Expand Down

0 comments on commit 1d46d1a

Please sign in to comment.