I'm using Hyper as my terminal on Linux Mint 19.2 and I've just installed ZSH with Oh My ZSH. when I open Hyper, a percentage sign appears before the prompt.
Asked
Active
Viewed 1,811 times
1
-
Provide your ZSH configuration files. – Simba Oct 06 '19 at 07:20
-
See https://unix.stackexchange.com/q/167582/5132 . – JdeBP Oct 10 '20 at 13:02
1 Answers
1
That reverse-video %
indicates an output that did not end with a newline:
/home/ekalin $ echo 'Hello, World'
Hello, World
/home/ekalin $ echo -n 'Hello, World'
Hello, World%
/home/ekalin $
So there must be something that's outputting a line without a newline. If it happens in every prompt, it should be in your prompt definition; if it happens only on session startup, it should be something from ~/.zshrc
(or in a file sourced from there).

ekalin
- 872
- 7
- 19