ND c2 MT c2 Nj k2 ZT Zm Mj A0 Nj Y1 Nm M2 OT c4
ND c2 MT c2 Nj k2 ZT Zm Mj A0 Nj Y1 Nm M2 OT c4
A while back I also had a slow terminal. Please see my ticket: https://github.com/b-ryan/powerline-shell/issues/331 Run the following to see if its the same issue I had: `env | grep PROMPT_COMMAND`
I also ran into this issue. The offending plugin was - https://github.com/kien/rainbow_parentheses.vim After removing this plugin, the extra bracket went away.
I'm also able to reproduce using Mac Terminal Version 2.7.
Ok, I believe I found a solution: ```sh export PS1='\[\033[48;05;10m\] \w \[\033[0m\]\[\033[0K' ``` Will need to test a bit more.
Here we go ( see the **_Clear Line_** bullet point ): - [ansi escape codes](http://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#deletion) Hmm , I think the search was for _"ansi color vt100 color codes lines wrap"_...
This appears to fix it: ```diff diff --git a/powerline_shell/__init__.py b/powerline_shell/__init__.py index 68eb227..603b425 100644 --- a/powerline_shell/__init__.py +++ b/powerline_shell/__init__.py @@ -90,7 +90,7 @@ class Powerline(object): self.cwd = get_valid_cwd() mode = config.get("mode", "patched")...