refactor: remove vertical_offset for transient prompt

relates to 
This commit is contained in:
Jan De Dobbeleer 2021-06-23 22:00:40 +02:00 committed by Jan De Dobbeleer
parent fb83354186
commit 3fd70ce716
4 changed files with 12 additions and 13 deletions

View file

@ -123,8 +123,6 @@ The configuration has the following properties:
- foreground: `string` [color][colors]
- template: `string` - A go [text/template][go-text-template] template extended with [sprig][sprig] utilizing the
properties below. Defaults to `{{ .Shell }}> <#f7dc66>{{ .Command }}</>`
- vertical_offset: `int` - Move the prompt up or down x lines. For example `vertical_offset: 1` moves the prompt down one line, `vertical_offset: -1`
moves it up one line. Useful when you have a multiline prompt. Defaults to `0`
#### Template Properties

View file

@ -32,10 +32,9 @@ type Config struct {
}
type TransientPrompt struct {
Template string `config:"template"`
Background string `config:"background"`
Foreground string `config:"foreground"`
VerticalOffset int `config:"vertical_offset"`
Template string `config:"template"`
Background string `config:"background"`
Foreground string `config:"foreground"`
}
const (

View file

@ -232,8 +232,15 @@ func (e *engine) renderTransientPrompt(command string) string {
prompt := template.renderPlainContextTemplate(context)
e.colorWriter.write(e.config.TransientPrompt.Background, e.config.TransientPrompt.Foreground, prompt)
transientPrompt := e.ansi.carriageBackward()
if e.config.TransientPrompt.VerticalOffset != 0 {
transientPrompt += e.ansi.changeLine(e.config.TransientPrompt.VerticalOffset)
// calculate offset for multiline prompt
lineOffset := 0
for _, block := range e.config.Blocks {
if block.Newline {
lineOffset--
}
}
if lineOffset != 0 {
transientPrompt += e.ansi.changeLine(lineOffset)
}
return transientPrompt + e.colorWriter.string() + e.ansi.clearEOL
}

View file

@ -1601,11 +1601,6 @@
"title": "Transient Prompt Template",
"default": "{{ .Shell }}> <#f7dc66>{{ .Command }}</>"
},
"vertical_offset": {
"type": "integer",
"title": "Transient Prompt vertical offset",
"default": 0
},
"background": { "$ref": "#/definitions/color" },
"foreground": { "$ref": "#/definitions/color" }
}