Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

v1.4.1: added additional configuration to editor prompt (#110)

Compare
Choose a tag to compare
@AlecAivazis AlecAivazis released this 11 Nov 17:35
· 159 commits to master since this release
* allow to change the editor behavior

Add two fields `HideDefault` and `AppendDefaul` to `Editor`.

If `HideDefault` is `true`, the default value is not shown
before the launch of the editor. By default this value is `false`.

If `AppendDefault` is `true`, the default value is written to the temporary
file before the launch of the editor and `Prompt()` returns the empty
string if the contents of the temporary file is empty.
By default this value is `false`.

* add tests of HideDefault and AppendDefault to tests/editor.go