Merge pull request #1413 from Ryooooooga/feature/edit-line

Make os.editCommand customizable using template
This commit is contained in:
Mark Kopenga
2021-08-23 10:15:38 +02:00
committed by GitHub
11 changed files with 104 additions and 22 deletions

View File

@@ -255,6 +255,9 @@ type OSConfig struct {
// EditCommand is the command for editing a file
EditCommand string `yaml:"editCommand,omitempty"`
// EditCommandTemplate is the command template for editing a file
EditCommandTemplate string `yaml:"editCommandTemplate,omitempty"`
// OpenCommand is the command for opening a file
OpenCommand string `yaml:"openCommand,omitempty"`