diff options
author | June McEnroe <june@causal.agency> | 2018-12-15 01:09:56 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-12-15 01:09:56 -0500 |
commit | a2a6ce99c06cb5452d10fd5814a1c9681e935be6 (patch) | |
tree | c12b89e572ad922fb8d19a1d838c89f8037d19f6 /ui.c | |
parent | Treat EOF as expected if self.quit (diff) | |
download | catgirl-a2a6ce99c06cb5452d10fd5814a1c9681e935be6.tar.gz catgirl-a2a6ce99c06cb5452d10fd5814a1c9681e935be6.zip |
Underline own nick
Diffstat (limited to '')
-rw-r--r-- | ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c index e437ef9..a4fedf5 100644 --- a/ui.c +++ b/ui.c @@ -537,7 +537,7 @@ void uiPrompt(void) { ); } else if (!isCommand(ui.view->tag, input)) { len = aswprintf( - &prompt, L"\3%d(%s)\3 ", + &prompt, L"\3%d<%s>\3 ", formatColor(self.user), self.nick ); } |