From eefc689ec977e26057a1d42dd4227bdde720bcd3 Mon Sep 17 00:00:00 2001 From: TravisTX Date: Sun, 27 Dec 2020 13:01:31 -0700 Subject: [PATCH] docs: fix json --- docs/docs/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/configuration.md b/docs/docs/configuration.md index bafcfac1..ff0003e2 100644 --- a/docs/docs/configuration.md +++ b/docs/docs/configuration.md @@ -83,12 +83,12 @@ the current working directory is `/usr/home/omp` and the shell is `zsh`. ```json { - "console_title_template" = "{{.Folder}}{{if .Root}} :: root{{end}} :: {{.Shell}}", + "console_title_template": "{{.Folder}}{{if .Root}} :: root{{end}} :: {{.Shell}}", // outputs: // when root == false: omp :: zsh // when root == true: omp :: root :: zsh - "console_title_template" = "{{.Folder}}", // outputs: omp - "console_title_template" = "{{.Shell}} in {{.Path}}", // outputs: zsh in /usr/home/omp + "console_title_template": "{{.Folder}}", // outputs: omp + "console_title_template": "{{.Shell}} in {{.Path}}", // outputs: zsh in /usr/home/omp } ```