0

When I try to use heredoc with powerline, I get blank segments before each new line: heredoc in powerline How can I fix it so that it looks lsomething ike this: heredoc in powerline-shell

popov895
  • 61
  • 8

1 Answers1

0

Just create a theme for continuation (file ~/.config/powerline/themes/shell/continuation.json) with the following content:

{
    "segments": {
        "left": [
            {
                "type": "string",
                "contents": ">",
                "highlight_groups": ["continuation"]
            }
        ]
    }
}

Here's the result: fixed powerline

Tomerikoo
  • 18,379
  • 16
  • 47
  • 61
popov895
  • 61
  • 8