diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/DarkMode.golden index 9e5916468e51758ed037f9203a9bd9fd2a428e69..698ca85f639a3611eeb3964c3be994b66ea73bb1 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/DarkMode.golden @@ -1,16 +1,16 @@   …  @@ -1,13 +1,15 @@    …    -  1  package main   1  package main  +  1  package main   1  package main    2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  -  8  fmt.Println(getContent())   9  fmt.Println(getContent())  -  9  }  10  }  +  7  func main() {   8  func main() {  +  8   fmt.Println(getContent())   9   fmt.Println(getContent())  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/LightMode.golden index 62d07f55af461a1b611c00199338265bb1af91c4..e548d553e1fc3bfb41c7b84bcb5a3f813cd7ae66 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/LightMode.golden @@ -1,16 +1,16 @@   …  @@ -1,13 +1,15 @@    …    -  1  package main   1  package main  +  1  package main   1  package main    2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  -  8  fmt.Println(getContent())   9  fmt.Println(getContent())  -  9  }  10  }  +  7  func main() {   8  func main() {  +  8   fmt.Println(getContent())   9   fmt.Println(getContent())  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/Default/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/Default/DarkMode.golden index 3d750b4e1ecafd7d0c1dd7648876fd1634b1f9cf..b00b47a18b46163593bcb105cea18dbb4661f966 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/Default/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/Default/DarkMode.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5  )   5  )  +  5  )   5  )    6     6    -  7  func main() {   7  func main() {  -  8 -  fmt.Println("Hello, world!")   8 +  content := "Hello, world!"  -       9 +  fmt.Println(content)  -  9  }  10  }  \ No newline at end of file +  7  func main() {   7  func main() {  +  8 -  fmt.Println("Hello, world!")   8 +  content := "Hello, world!"  +       9 +  fmt.Println(content)  +  9  }  10  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/Default/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/Default/LightMode.golden index 949a3f02dfe832ebc0463e6da038a96f4ba15473..1d5472609c01435393837ff441dcf9834ae561ae 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/Default/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/Default/LightMode.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5  )   5  )  +  5  )   5  )    6     6    -  7  func main() {   7  func main() {  -  8 -  fmt.Println("Hello, world!")   8 +  content := "Hello, world!"  -       9 +  fmt.Println(content)  -  9  }  10  }  \ No newline at end of file +  7  func main() {   7  func main() {  +  8 -  fmt.Println("Hello, world!")   8 +  content := "Hello, world!"  +       9 +  fmt.Println(content)  +  9  }  10  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/DarkMode.golden index b7e699e4460fa9db9db6e45779bb5204b22dec27..5058ab2079c8c27905c07929ec1b854549dfa9f0 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/DarkMode.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/LightMode.golden index 731461ee0a7abb1999946259a56694429ded9b9a..54be547a1c74b34e4bfc1fd3ee84d946bd7603d5 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/LightMode.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/DarkMode.golden index c69efe614a04aba3f680d6cf9af91112af13560b..818863adc9081bcd2b66b0029f3a72a994d618e5 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/DarkMode.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/LightMode.golden index e22a98ecf771bc651d26af440a361286dcb167f7..376bae2594d8e175cdd84b90846fe43c639c4d69 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/LightMode.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/Narrow/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/Narrow/DarkMode.golden index bc4ad0d0f01fd89833feddd4d0af1c32c6a635c8..5b5a7815e5a6ca092036595df1a3cb30d644e8c9 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/Narrow/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/Narrow/DarkMode.golden @@ -1,4 +1,4 @@  …  @@ -1,3 +1,3 @@   …    - 1 - a  1 + d  - 2 - b  2 + e  - 3 - c  3 + f  \ No newline at end of file + 1 - a  1 + d  + 2 - b  2 + e  + 3 - c  3 + f  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/Narrow/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/Narrow/LightMode.golden index 287773c442a2a8a3987661a26e8e3596ccdfe27d..4ece6dca5318253fbc8af76e89a3fe41fc87009b 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/Narrow/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/Narrow/LightMode.golden @@ -1,4 +1,4 @@  …  @@ -1,3 +1,3 @@   …    - 1 - a  1 + d  - 2 - b  2 + e  - 3 - c  3 + f  \ No newline at end of file + 1 - a  1 + d  + 2 - b  2 + e  + 3 - c  3 + f  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/DarkMode.golden index 615a74ccea34ea981a523d94fc709c74c21954c7..ce013bf466a000e0d7b8256a1d978e8cf48e89ab 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/DarkMode.golden @@ -1,7 +1,7 @@  @@ -5,5 +5,6 @@     - )  )  + )  )       - func main() {  func main() {  --  fmt.Println("Hello, world!") +  content := "Hello, world!"  -  +  fmt.Println(content)  - }  }  \ No newline at end of file + func main() {  func main() {  +-  fmt.Println("Hello, world!") +  content := "Hello, world!"  +  +  fmt.Println(content)  + }  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/LightMode.golden index b3df58f0576c5c62f22fe79bf4040326bdbec7e6..241d60f8793bba0fb2819220caa6259c1124edb3 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/LightMode.golden @@ -1,7 +1,7 @@  @@ -5,5 +5,6 @@     - )  )  + )  )       - func main() {  func main() {  --  fmt.Println("Hello, world!") +  content := "Hello, world!"  -  +  fmt.Println(content)  - }  }  \ No newline at end of file + func main() {  func main() {  +-  fmt.Println("Hello, world!") +  content := "Hello, world!"  +  +  fmt.Println(content)  + }  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/NoSyntaxHighlight/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/NoSyntaxHighlight/DarkMode.golden new file mode 100644 index 0000000000000000000000000000000000000000..c69efe614a04aba3f680d6cf9af91112af13560b --- /dev/null +++ b/internal/exp/diffview/testdata/TestDiffView/Split/NoSyntaxHighlight/DarkMode.golden @@ -0,0 +1,15 @@ +  …  @@ -2,6 +2,7 @@    …    +  2     2    +  3  import (   3  import (  +  4  "fmt"   4  "fmt"  +       5 +  "strings"  +  5  )   6  )  +  6     7    +  7  func main() {   8  func main() {  +  …  @@ -9,5 +10,6 @@    …    +  9  }  10  }  + 10    11    + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/NoSyntaxHighlight/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/NoSyntaxHighlight/LightMode.golden new file mode 100644 index 0000000000000000000000000000000000000000..e22a98ecf771bc651d26af440a361286dcb167f7 --- /dev/null +++ b/internal/exp/diffview/testdata/TestDiffView/Split/NoSyntaxHighlight/LightMode.golden @@ -0,0 +1,15 @@ +  …  @@ -2,6 +2,7 @@    …    +  2     2    +  3  import (   3  import (  +  4  "fmt"   4  "fmt"  +       5 +  "strings"  +  5  )   6  )  +  6     7    +  7  func main() {   8  func main() {  +  …  @@ -9,5 +10,6 @@    …    +  9  }  10  }  + 10    11    + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/DarkMode.golden index 1c8e9fa4b8a906b6baaf787501fa0d6d41e5595c..c3744b0a3b97baa0404ad5830ff7893105c0db9d 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/DarkMode.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 …  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getConte… 12  func getConte… - 12 -  return "H… 13 +  content :… -      14 +  return co… - 13  }  15  }  \ No newline at end of file + 11  func getConte… 12  func getConte… + 12 -  return "H… 13 +  content :… +      14 +  return co… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/LightMode.golden index d0ca9dd0d86109752758fb32f20222a26b265b9c..7efec8881d7252d4e0f5a444f372a19e12e5e035 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/LightMode.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 …  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getConte… 12  func getConte… - 12 -  return "H… 13 +  content :… -      14 +  return co… - 13  }  15  }  \ No newline at end of file + 11  func getConte… 12  func getConte… + 12 -  return "H… 13 +  content :… +      14 +  return co… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/DarkMode.golden index 35da9718499b2acf8c88bf12a338eb2f7563e8a3..94d5b96e6ead9e58f58cead608bc24571d712d50 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/DarkMode.golden @@ -1,17 +1,17 @@   …   …  @@ -1,13 +1,15 @@   -  1   1  package main  +  1   1  package main    2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  -  8   9  fmt.Println(getContent())  -  9  10  }  +  7   8  func main() {  +  8   9   fmt.Println(getContent())  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/LightMode.golden index f46db4b259c797f76955aabe369d38b9306a9ee6..769aef3900a021bec59a59051c537562c78c0f95 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/LightMode.golden @@ -1,17 +1,17 @@   …   …  @@ -1,13 +1,15 @@   -  1   1  package main  +  1   1  package main    2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  -  8   9  fmt.Println(getContent())  -  9  10  }  +  7   8  func main() {  +  8   9   fmt.Println(getContent())  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/Default/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/Default/DarkMode.golden index 9579770c5db427b2f7a062a0572dcac142f1c03a..508754f0c6a3493d1efa006360eaeeacde13baea 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/Default/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/Default/DarkMode.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5  )  +  5   5  )    6   6    -  7   7  func main() {  -  8    -  fmt.Println("Hello, world!")  -     8 +  content := "Hello, world!"  -     9 +  fmt.Println(content)  -  9  10  }  \ No newline at end of file +  7   7  func main() {  +  8    -  fmt.Println("Hello, world!")  +     8 +  content := "Hello, world!"  +     9 +  fmt.Println(content)  +  9  10  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/Default/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/Default/LightMode.golden index 51e44bba27edb87f7867c8f431d0454fdf3c62ba..6532d31fe0f28f9a7619af543fc10848f438f4c9 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/Default/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/Default/LightMode.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5  )  +  5   5  )    6   6    -  7   7  func main() {  -  8    -  fmt.Println("Hello, world!")  -     8 +  content := "Hello, world!"  -     9 +  fmt.Println(content)  -  9  10  }  \ No newline at end of file +  7   7  func main() {  +  8    -  fmt.Println("Hello, world!")  +     8 +  content := "Hello, world!"  +     9 +  fmt.Println(content)  +  9  10  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/DarkMode.golden index 1eae42a5bb9a03d64703a4620a0c1810c332cdab..c0be6012af274bc1c746a26746d4e29473493ef8 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/DarkMode.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/LightMode.golden index 1a2bffc13aef1ca84426076417ca75d1fa7bffbe..f1700f00f23dc0960a12e5cdf37281e922d8fe2d 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/LightMode.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/DarkMode.golden index 18c9c363f3952bda8537f96496405edce5684485..bd1232d8439ec0f20601793817093304b37b91c4 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/DarkMode.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/LightMode.golden index 285caf3659ba538e0c12da796836045311ecad67..4833a8a0263aada505f2e115c5dfb9fc469def67 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/LightMode.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/DarkMode.golden index 8de3cebc908067f19420536239a26d8b513f1407..586dcd0a0ad6b4dc2963f8d2064db1e54f917b30 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/DarkMode.golden @@ -1,7 +1,7 @@  …  …  @@ -1,3 +1,3 @@   - 1    - a  - 2    - b  - 3    - c  -    1 + d  -    2 + e  -    3 + f  \ No newline at end of file + 1    - a  + 2    - b  + 3    - c  +    1 + d  +    2 + e  +    3 + f  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/LightMode.golden index 5ba43a7d9161a4e96349280a41709d52501d60bc..ec946344674b34b4c4530bedb1d3307ca364bc8f 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/LightMode.golden @@ -1,7 +1,7 @@  …  …  @@ -1,3 +1,3 @@   - 1    - a  - 2    - b  - 3    - c  -    1 + d  -    2 + e  -    3 + f  \ No newline at end of file + 1    - a  + 2    - b  + 3    - c  +    1 + d  +    2 + e  +    3 + f  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/DarkMode.golden index 817b0ef6562e0c8d434babdd40cb2219fa188575..23050d7964d12cbb9a4c7529d26173f5a6efd174 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/DarkMode.golden @@ -1,8 +1,8 @@  @@ -5,5 +5,6 @@   - )  + )     - func main() {  --  fmt.Println("Hello, world!")  -+  content := "Hello, world!"  -+  fmt.Println(content)  - }  \ No newline at end of file + func main() {  +-  fmt.Println("Hello, world!")  ++  content := "Hello, world!"  ++  fmt.Println(content)  + }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/LightMode.golden index b3955c92994f9561c035631a6b1c99f3f7695a14..dcb98a08bb11c35eb6b1d4288ebca3e47e285948 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/LightMode.golden @@ -1,8 +1,8 @@  @@ -5,5 +5,6 @@   - )  + )     - func main() {  --  fmt.Println("Hello, world!")  -+  content := "Hello, world!"  -+  fmt.Println(content)  - }  \ No newline at end of file + func main() {  +-  fmt.Println("Hello, world!")  ++  content := "Hello, world!"  ++  fmt.Println(content)  + }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/NoSyntaxHighlight/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/NoSyntaxHighlight/DarkMode.golden new file mode 100644 index 0000000000000000000000000000000000000000..18c9c363f3952bda8537f96496405edce5684485 --- /dev/null +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/NoSyntaxHighlight/DarkMode.golden @@ -0,0 +1,16 @@ +  …   …  @@ -2,6 +2,7 @@   +  2   2    +  3   3  import (  +  4   4  "fmt"  +     5 +  "strings"  +  5   6  )  +  6   7    +  7   8  func main() {  +  …   …  @@ -9,5 +10,6 @@   +  9  10  }  + 10  11    + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/NoSyntaxHighlight/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/NoSyntaxHighlight/LightMode.golden new file mode 100644 index 0000000000000000000000000000000000000000..285caf3659ba538e0c12da796836045311ecad67 --- /dev/null +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/NoSyntaxHighlight/LightMode.golden @@ -0,0 +1,16 @@ +  …   …  @@ -2,6 +2,7 @@   +  2   2    +  3   3  import (  +  4   4  "fmt"  +     5 +  "strings"  +  5   6  )  +  6   7    +  7   8  func main() {  +  …   …  @@ -9,5 +10,6 @@   +  9  10  }  + 10  11    + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/DarkMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/DarkMode.golden index 19b8e852925c5fa1377e9fa3a2460e3ccc466357..773547de65905ab8872164be01584770da29d475 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/DarkMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/DarkMode.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUppe… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUppe… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/LightMode.golden b/internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/LightMode.golden index 1fa51a9e2840438aa94f306a294a82d22d0f5482..bc1c6c04db45d3d8dfddf23440dcfa430cec7fb0 100644 --- a/internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/LightMode.golden +++ b/internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/LightMode.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUppe… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUppe… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf004.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf004.golden index fca802e8b1cb57de2887cffadba3771a68d6d10c..b42965be972ce8b096db1508514e9d494a57bad7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf004.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf004.golden @@ -1,4 +1,4 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  +  3  import (   3  import (    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf005.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf005.golden index 6515d553ee9c3077bcf503e96fc6fbaad662bfd4..8d4a293fdd17ce5cbd8d709656573105a8cc7b09 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf005.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf005.golden @@ -1,5 +1,5 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf006.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf006.golden index 1112cc8316a3f084872381f3d2e18d4c4e61ef30..67d30fec443bdeea7b49eba4ab346603baba7670 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf006.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf006.golden @@ -1,6 +1,6 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf007.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf007.golden index 85dcb7a4e8351a549d717b0d5f5ff87baba89c04..ba19bebf9686a530e87e11d090ad4f04f4ade5fb 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf007.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf007.golden @@ -1,7 +1,7 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf008.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf008.golden index b64d596e6eaa36aa837a0be6cde7aa5cbe5e2d0a..edb4eb9aaa24d28523498661d3d802edb62b243d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf008.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf008.golden @@ -1,8 +1,8 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7      …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf009.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf009.golden index 73b0d2d97c02dd5faf92c6a1cdad369260728fcf..fc1998f1d33f0299550660b368de1e4d720c2ed0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf009.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf009.golden @@ -1,9 +1,9 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf010.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf010.golden index 9b0cc01038150ecba239f81876ac4ea693729ef7..10474f0884137006961cc6e5bfddf6d001c5561d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf010.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf010.golden @@ -1,10 +1,10 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …      …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf011.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf011.golden index 0284e20729c6cae98d1115eb8684a31415739883..0e25a5ef5279cf29cfa1eb24831bc062a8bb6254 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf011.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf011.golden @@ -1,11 +1,11 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf012.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf012.golden index a8b368aa5c64c7fb5b2de195fdccd7704c61a476..f178ad9ab9285b83c0efc9b207379a61f16ec7a9 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf012.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf012.golden @@ -1,12 +1,12 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11      …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf013.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf013.golden index b0993db7fd6e53f144e07a3db91940ed0ef529c6..edcfcd2f89adef8525a8acee4d3ce9e8d1ffd605 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf013.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf013.golden @@ -1,13 +1,13 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  + 11  func getContent() string {  12  func getContent() string {    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf014.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf014.golden index 63caade9138ef74cf5abe6d9e85a97e1c7307519..6ff0ca309b149aa73bfaec8ec0debdaa253cecfe 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf014.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf014.golden @@ -1,14 +1,14 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf015.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf015.golden index e22a98ecf771bc651d26af440a361286dcb167f7..376bae2594d8e175cdd84b90846fe43c639c4d69 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf015.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf015.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf016.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf016.golden index 70ca3fc122c17259015d6614d3056292cc0bbe39..6b79b752f668a21205c772356ffb1af1d6c88546 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf016.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf016.golden @@ -1,16 +1,16 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }             \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf017.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf017.golden index c055ca2cbf739903fba0bccf0ded1e147b1751f7..81086126879f38feda13147520b4ced931441d67 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf017.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf017.golden @@ -1,17 +1,17 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }                        \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf018.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf018.golden index b512e1810c53da0a889edc95c4dde3c655f6c28c..0ced2af062c5ddfa3179501b02ea58c549491103 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf018.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf018.golden @@ -1,18 +1,18 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }                                   \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf019.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf019.golden index 2b209f23854f5db9107401558b06b60f588b3a49..e94c36d1f801e0dae9ae22c6758638e692aa5afa 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf019.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf019.golden @@ -1,18 +1,18 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }                                   diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf020.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf020.golden index 2ab516a4ab5957130c0e7274b001189d50b35a32..0c20bb81d81d8a4a000f601fa75a1f148610c06d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf020.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Split/HeightOf020.golden @@ -1,18 +1,18 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }                                   diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf004.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf004.golden index 9de759b3ee15fd074cab28ee2866ad5b48f5ec66..c25c0f42f2fce40ac113946407cfee70cb597ebd 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf004.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf004.golden @@ -1,4 +1,4 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  +  3   3  import (    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf005.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf005.golden index f73f2e5107400bb11415c48d3b8446009f22373d..e11e6df667cfa9dc3d909f30fef8895c16dc85c2 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf005.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf005.golden @@ -1,5 +1,5 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  +  3   3  import (  +  4   4   "fmt"    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf006.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf006.golden index 119066f8acbae929a9555c32a338116e140fc724..d6a7952a8e59e13f6443a7430a08d38245963daa 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf006.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf006.golden @@ -1,6 +1,6 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf007.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf007.golden index 251adc55165c98fcf8cadd7d8e5214a15fda7e33..f04437d8e721cd83ccac5d83d7ece23aea2deca9 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf007.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf007.golden @@ -1,7 +1,7 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf008.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf008.golden index c5e77f40c2fe54f0456ac88fb3511e0cb9f6db99..9bc97685b06c45886e3e51aa853e6979c13535f4 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf008.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf008.golden @@ -1,8 +1,8 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7      …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf009.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf009.golden index f6d733e2c963ff0739cfdfa86d1544f64a38452a..b644669ac3c44b02fa524df27a79ca5fa43ebc5f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf009.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf009.golden @@ -1,9 +1,9 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf010.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf010.golden index 03288eb048726d484e1b41dddf7bf9cef64ea078..2c1730435a32cf3a5adfa6a0cd2b7096959d72cb 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf010.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf010.golden @@ -1,10 +1,10 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@     …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf011.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf011.golden index 1285ef27e22ca7cb8db77be33b88544bc34448af..11933267d0e96a9d40847cc6ab63eb8a638c903f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf011.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf011.golden @@ -1,11 +1,11 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf012.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf012.golden index fd6fea0459398c72b70e78367cb41a03f71f109a..6f85a1321dafe076664f68bce0cfacc904bcf348 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf012.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf012.golden @@ -1,12 +1,12 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11      …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf013.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf013.golden index c3567a7095df72c0f74066c21f4c9e6d8e802aa9..9a40f2743bb130da78160e44804121046bfc2648 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf013.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf013.golden @@ -1,13 +1,13 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  + 11  12  func getContent() string {    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf014.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf014.golden index 64b13049fd0568077bd8599adf666ff85924caf8..92c873c53589db4d5dbb3d5823577ec0ea3c0525 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf014.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf014.golden @@ -1,14 +1,14 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  + 11  12  func getContent() string {  + 12    -  return "Hello, world!"    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf015.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf015.golden index 1ae8e47ea0ecbf64d831a09f1822d06ffba75ed6..a6c452786f6dd1a90b06af9565230a32a2f7fca9 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf015.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf015.golden @@ -1,15 +1,15 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf016.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf016.golden index 285caf3659ba538e0c12da796836045311ecad67..4833a8a0263aada505f2e115c5dfb9fc469def67 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf016.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf016.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf017.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf017.golden index 0953da169e133e86be984c7435c0413cd7952764..6a11e8c96fbf5917fb8fba209c6e08420042b50e 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf017.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf017.golden @@ -1,17 +1,17 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }           \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf018.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf018.golden index 697f92d3559b5eeaf2655fe6f5599795583e5f1b..e1679a274299677d72b8fde8f12f8900edb32244 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf018.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf018.golden @@ -1,18 +1,18 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }                    \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf019.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf019.golden index 2457736daff4a9a3812f56d1e475889921fab870..e500ceed976da0ee572e015eba1e1908963ce0f2 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf019.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf019.golden @@ -1,19 +1,19 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }                             \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf020.golden b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf020.golden index 83f47be1f89b3e7b346d105c346d8d5ad960fe72..89d701a43e2df3c14677ef4135dfebc7654eb3df 100644 --- a/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf020.golden +++ b/internal/exp/diffview/testdata/TestDiffViewHeight/Unified/HeightOf020.golden @@ -1,19 +1,19 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }                             diff --git a/internal/exp/diffview/testdata/TestDiffViewTabs/Split.golden b/internal/exp/diffview/testdata/TestDiffViewTabs/Split.golden index 47ec287f0894851ff20b75d5f267e9733e30b497..55f9b83eb60b7d807d6573770c095f1fe4300380 100644 --- a/internal/exp/diffview/testdata/TestDiffViewTabs/Split.golden +++ b/internal/exp/diffview/testdata/TestDiffViewTabs/Split.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewTabs/Unified.golden b/internal/exp/diffview/testdata/TestDiffViewTabs/Unified.golden index 1f71e8a1bfad8219360784d1ef2893d2a86f3b41..744ba1f8400a69344016826ad10de5a72c540a0b 100644 --- a/internal/exp/diffview/testdata/TestDiffViewTabs/Unified.golden +++ b/internal/exp/diffview/testdata/TestDiffViewTabs/Unified.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf011.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf011.golden index 502334c77d0f58af035bf4998cf69f0344309a0a..0a3c87cd5b70374bb983c3bbb131e38691d6f857 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf011.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf011.golden @@ -1,15 +1,15 @@   …  …  …     2    2   -  3    3   -  4    4   -      5 + -  5    6   +  3    3   +  4    4   +      5 + +  5    6     6    7   -  7    8   +  7    8     …  …  …   -  9   10   +  9   10    10   11   - 11   12   - 12 -  13 + -     14 + - 13   15   \ No newline at end of file + 11   12   + 12 -  13 + +     14 + + 13   15   \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf013.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf013.golden index 7eda447090c6b85ca3502f7371afc57022c1b850..18784d5152179f7166a928d253b00515ff549dcf 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf013.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf013.golden @@ -1,15 +1,15 @@   …  …  …      2    2    -  3    3  … -  4    4  … -      5 + … -  5    6  ) +  3    3    +  4    4    +      5 +   +  5    6      6    7    -  7    8  … +  7    8      …  …  …    -  9   10  } +  9   10     10   11    - 11   12  … - 12 -  13 + … -     14 + … - 13   15  } \ No newline at end of file + 11   12    + 12 -  13 +   +     14 +   + 13   15    \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf014.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf014.golden index caf23c7a2a5d9aa605db14b60e521c30ca4e56f4..92962575466205b1520bcb948bfbcf3d9040cd20 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf014.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf014.golden @@ -1,15 +1,15 @@   …  …  …      2     2    -  3  …  3  … -  4  …  4  … -       5 + … -  5  )  6  ) +  3  …  3  … +  4  …  4  … +       5 + … +  5  )  6  )   6     7    -  7  …  8  … +  7  …  8  …   …  …  …    -  9  } 10  } +  9  } 10  }  10    11    - 11  … 12  … - 12 - … 13 + … -      14 + … - 13  } 15  } \ No newline at end of file + 11  … 12  … + 12 - … 13 + … +      14 + … + 13  } 15  } \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf015.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf015.golden index 659cd730961e5a3e8b9209eee543b2079a7ad2de..3e564c4e1b4224f1c1a95c4e459b14b989ed9211 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf015.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf015.golden @@ -1,15 +1,15 @@   …  …  …      2     2    -  3  …  3  i… -  4  …  4  … -       5 +  … -  5  )  6  )  +  3  …  3  …  +  4  …  4  …  +       5 + …  +  5  )  6  )    6     7    -  7  …  8  f… +  7  …  8  …    …  …  …    -  9  } 10  }  +  9  } 10  }   10    11    - 11  … 12  f… - 12 - … 13 +  … -      14 +  … - 13  } 15  }  \ No newline at end of file + 11  … 12  …  + 12 - … 13 + …  +      14 + …  + 13  } 15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf016.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf016.golden index ef8a363a37fbf919ae2411e086e6297d84abc3dd..73c32b5beb4fe882fee590f933ba30fc7df3f055 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf016.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf016.golden @@ -1,15 +1,15 @@   …  @…  …      2     2    -  3  i…  3  i… -  4  …  4  … -       5 +  … -  5  )   6  )  +  3  i…  3  i… +  4   …  4   … +       5 +  … +  5  )   6  )    6     7    -  7  f…  8  f… +  7  f…  8  f…   …  @…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  f… 12  f… - 12 -  … 13 +  … -      14 +  … - 13  }  15  }  \ No newline at end of file + 11  f… 12  f… + 12 -  … 13 +  … +      14 +  … + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf017.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf017.golden index b8e0ae759f76d18649f7792fbfd68480e184eeff..a0a56d1c19961775f7ae0b8471f2dd36be2898d6 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf017.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf017.golden @@ -1,15 +1,15 @@   …  @…  …      2     2    -  3  i…  3  im… -  4  …  4  … -       5 +  … -  5  )   6  )  +  3  i…  3  i…  +  4   …  4   …  +       5 +  …  +  5  )   6  )    6     7    -  7  f…  8  fu… +  7  f…  8  f…    …  @…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  f… 12  fu… - 12 -  … 13 +  … -      14 +  … - 13  }  15  }  \ No newline at end of file + 11  f… 12  f…  + 12 -  … 13 +  …  +      14 +  …  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf018.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf018.golden index df04245f6e8553a181ecad314bff57872e5fc88e..eaf9ba5140a00fbb67c689bf66cae5293464fbbd 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf018.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf018.golden @@ -1,15 +1,15 @@   …  @@…  …      2     2    -  3  im…  3  im… -  4  …  4  … -       5 +  … -  5  )   6  )  +  3  im…  3  im… +  4   …  4   … +       5 +  … +  5  )   6  )    6     7    -  7  fu…  8  fu… +  7  fu…  8  fu…   …  @@…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  fu… 12  fu… - 12 -  … 13 +  … -      14 +  … - 13  }  15  }  \ No newline at end of file + 11  fu… 12  fu… + 12 -  … 13 +  … +      14 +  … + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf019.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf019.golden index 4d092a8e67a39be0b827a58c8c2f58919e55921c..f2b48119efe04ce3650d2964df314d7a43fadd99 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf019.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf019.golden @@ -1,15 +1,15 @@   …  @@…  …      2     2    -  3  im…  3  imp… -  4  …  4  … -       5 +  … -  5  )   6  )  +  3  im…  3  im…  +  4   …  4   …  +       5 +  …  +  5  )   6  )    6     7    -  7  fu…  8  fun… +  7  fu…  8  fu…    …  @@…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  fu… 12  fun… - 12 -  … 13 +  … -      14 +  … - 13  }  15  }  \ No newline at end of file + 11  fu… 12  fu…  + 12 -  … 13 +  …  +      14 +  …  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf020.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf020.golden index 715b049eb2afff0ad2e5667c39ea2b6943095edf..80faca00e90d24c17339877a2e96fee8363d195b 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf020.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf020.golden @@ -1,15 +1,15 @@   …  @@ …  …      2     2    -  3  imp…  3  imp… -  4  …  4  … -       5 +  … -  5  )   6  )  +  3  imp…  3  imp… +  4   …  4   … +       5 +  … +  5  )   6  )    6     7    -  7  fun…  8  fun… +  7  fun…  8  fun…   …  @@ …  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  fun… 12  fun… - 12 -  … 13 +  … -      14 +  … - 13  }  15  }  \ No newline at end of file + 11  fun… 12  fun… + 12 -  … 13 +  … +      14 +  … + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf021.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf021.golden index 5683fcb58bacc835218a2ea38ab0c3f3d122cffb..ef6bbfffd814eb2ae28e1f399d78ebe9ea1c3b05 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf021.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf021.golden @@ -1,15 +1,15 @@   …  @@ …  …      2     2    -  3  imp…  3  impo… -  4  …  4  … -       5 +  … -  5  )   6  )  +  3  imp…  3  imp…  +  4   …  4   …  +       5 +  …  +  5  )   6  )    6     7    -  7  fun…  8  func… +  7  fun…  8  fun…    …  @@ …  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  fun… 12  func… - 12 -  … 13 +  … -      14 +  … - 13  }  15  }  \ No newline at end of file + 11  fun… 12  fun…  + 12 -  … 13 +  …  +      14 +  …  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf022.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf022.golden index 30dd46b6cabf0f76f6b7142e5752117c9018f81b..9a3d74e5073f9229d4ff87cf0f54cc035804a87e 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf022.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf022.golden @@ -1,15 +1,15 @@   …  @@ -…  …      2     2    -  3  impo…  3  impo… -  4  …  4  … -       5 +  … -  5  )   6  )  +  3  impo…  3  impo… +  4   …  4   … +       5 +  … +  5  )   6  )    6     7    -  7  func…  8  func… +  7  func…  8  func…   …  @@ -…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func… 12  func… - 12 -  … 13 +  … -      14 +  … - 13  }  15  }  \ No newline at end of file + 11  func… 12  func… + 12 -  … 13 +  … +      14 +  … + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf023.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf023.golden index bb7c9e917f28e363ae2bb5ebf19207ec2089bd4e..8b59e07438c73077b25e91e1aea95b0762278ead 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf023.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf023.golden @@ -1,15 +1,15 @@   …  @@ -…  …      2     2    -  3  impo…  3  impor… -  4  …  4  "… -       5 +  "… -  5  )   6  )  +  3  impo…  3  impo…  +  4   …  4   …  +       5 +  …  +  5  )   6  )    6     7    -  7  func…  8  func … +  7  func…  8  func…    …  @@ -…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func… 12  func … - 12 -  … 13 +  c… -      14 +  r… - 13  }  15  }  \ No newline at end of file + 11  func… 12  func…  + 12 -  … 13 +  …  +      14 +  …  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf024.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf024.golden index 4ddf59235fefa2be91a7d978b7f9b7a2b130547c..e9e963f6d68f39797652735946bba4d60f9bb07b 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf024.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf024.golden @@ -1,15 +1,15 @@   …  @@ -2…  …      2     2    -  3  impor…  3  impor… -  4  "…  4  "… -       5 +  "… -  5  )   6  )  +  3  impor…  3  impor… +  4   "…  4   "… +       5 +  "… +  5  )   6  )    6     7    -  7  func …  8  func … +  7  func …  8  func …   …  @@ -9…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func … 12  func … - 12 -  r… 13 +  c… -      14 +  r… - 13  }  15  }  \ No newline at end of file + 11  func … 12  func … + 12 -  r… 13 +  c… +      14 +  r… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf025.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf025.golden index 0c5ee8b923134c00c43df76d3f85f302a760e1c0..88b14c368e9d758f73b170aedcc289665b323de5 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf025.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf025.golden @@ -1,15 +1,15 @@   …  @@ -2…  …      2     2    -  3  impor…  3  import… -  4  "…  4  "f… -       5 +  "s… -  5  )   6  )  +  3  impor…  3  impor…  +  4   "…  4   "…  +       5 +  "…  +  5  )   6  )    6     7    -  7  func …  8  func m… +  7  func …  8  func …    …  @@ -9…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func … 12  func g… - 12 -  r… 13 +  co… -      14 +  re… - 13  }  15  }  \ No newline at end of file + 11  func … 12  func …  + 12 -  r… 13 +  c…  +      14 +  r…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf026.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf026.golden index 11de5247c53a11bfb08922c82fc8d3a8f4a110b4..f1a03a44b153d125baea902647542eb268e04c85 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf026.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf026.golden @@ -1,15 +1,15 @@   …  @@ -2,…  …      2     2    -  3  import…  3  import… -  4  "f…  4  "f… -       5 +  "s… -  5  )   6  )  +  3  import…  3  import… +  4   "f…  4   "f… +       5 +  "s… +  5  )   6  )    6     7    -  7  func m…  8  func m… +  7  func m…  8  func m…   …  @@ -9,…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func g… 12  func g… - 12 -  re… 13 +  co… -      14 +  re… - 13  }  15  }  \ No newline at end of file + 11  func g… 12  func g… + 12 -  re… 13 +  co… +      14 +  re… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf027.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf027.golden index 269025e9ce89ce2ed97d863bb9223d1a374da97f..2be2ed4039296a08ca88ea742294c69fe328bb09 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf027.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf027.golden @@ -1,15 +1,15 @@   …  @@ -2,…  …      2     2    -  3  import…  3  import ( -  4  "f…  4  "fm… -       5 +  "st… -  5  )   6  )  +  3  import…  3  import…  +  4   "f…  4   "f…  +       5 +  "s…  +  5  )   6  )    6     7    -  7  func m…  8  func ma… +  7  func m…  8  func m…    …  @@ -9,…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func g… 12  func ge… - 12 -  re… 13 +  con… -      14 +  ret… - 13  }  15  }  \ No newline at end of file + 11  func g… 12  func g…  + 12 -  re… 13 +  co…  +      14 +  re…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf028.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf028.golden index bd6e917b2fabea1a818c2cc63dfee8ee62eb2c7e..ac729f74b19b2bed7b6c254aae945d6dcd9321af 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf028.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf028.golden @@ -1,15 +1,15 @@   …  @@ -2,6…  …      2     2    -  3  import (  3  import ( -  4  "fm…  4  "fm… -       5 +  "st… -  5  )   6  )  +  3  import (  3  import ( +  4   "fm…  4   "fm… +       5 +  "st… +  5  )   6  )    6     7    -  7  func ma…  8  func ma… +  7  func ma…  8  func ma…   …  @@ -9,5…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func ge… 12  func ge… - 12 -  ret… 13 +  con… -      14 +  ret… - 13  }  15  }  \ No newline at end of file + 11  func ge… 12  func ge… + 12 -  ret… 13 +  con… +      14 +  ret… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf029.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf029.golden index f98f2bfc17aaa46e946d0830cd9a75f65c5bede0..ac330346bcde118e8f0366cd3bf5ba85162a7156 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf029.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf029.golden @@ -1,15 +1,15 @@   …  @@ -2,6…  …      2     2    -  3  import (  3  import (  -  4  "fm…  4  "fmt" -       5 +  "str… -  5  )   6  )  +  3  import (  3  import (  +  4   "fm…  4   "fm…  +       5 +  "st…  +  5  )   6  )    6     7    -  7  func ma…  8  func mai… +  7  func ma…  8  func ma…    …  @@ -9,5…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func ge… 12  func get… - 12 -  ret… 13 +  cont… -      14 +  retu… - 13  }  15  }  \ No newline at end of file + 11  func ge… 12  func ge…  + 12 -  ret… 13 +  con…  +      14 +  ret…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf030.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf030.golden index b7a4024f2c282cbd95296f1248609f97156e50e6..6504f7ece94be17d44840ce265658a01165f6764 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf030.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf030.golden @@ -1,15 +1,15 @@   …  @@ -2,6 …  …      2     2    -  3  import (   3  import (  -  4  "fmt"  4  "fmt" -       5 +  "str… -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"  4   "fmt" +       5 +  "str… +  5  )   6  )    6     7    -  7  func mai…  8  func mai… +  7  func mai…  8  func mai…   …  @@ -9,5 …  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func get… 12  func get… - 12 -  retu… 13 +  cont… -      14 +  retu… - 13  }  15  }  \ No newline at end of file + 11  func get… 12  func get… + 12 -  retu… 13 +  cont… +      14 +  retu… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf031.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf031.golden index 2cf24437d4223cd6ee449f2c73004c9e26a3c8c4..8c93b028a434f0819fa013886eb00d8aabd1285d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf031.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf031.golden @@ -1,15 +1,15 @@   …  @@ -2,6 …  …      2     2    -  3  import (   3  import (  -  4  "fmt"  4  "fmt"  -       5 +  "stri… -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"  4   "fmt"  +       5 +  "str…  +  5  )   6  )    6     7    -  7  func mai…  8  func main… +  7  func mai…  8  func mai…    …  @@ -9,5 …  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func get… 12  func getC… - 12 -  retu… 13 +  conte… -      14 +  retur… - 13  }  15  }  \ No newline at end of file + 11  func get… 12  func get…  + 12 -  retu… 13 +  cont…  +      14 +  retu…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf032.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf032.golden index b449f59eca2ece529c135498aa6fb2390bdcb57c..4a71409e9b273fbe3095c77ae6b14817e1d4a712 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf032.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf032.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "stri… -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "stri… +  5  )   6  )    6     7    -  7  func main…  8  func main… +  7  func main…  8  func main…   …  @@ -9,5 +…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getC… 12  func getC… - 12 -  retur… 13 +  conte… -      14 +  retur… - 13  }  15  }  \ No newline at end of file + 11  func getC… 12  func getC… + 12 -  retur… 13 +  conte… +      14 +  retur… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf033.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf033.golden index 461b215a58fad21d566f89245afc09ba5369d6a1..9273c0133a6bb74a1d9ff0786ec5b8d001cf1eb6 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf033.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf033.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strin… -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "stri…  +  5  )   6  )    6     7    -  7  func main…  8  func main(… +  7  func main…  8  func main…    …  @@ -9,5 +…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getC… 12  func getCo… - 12 -  retur… 13 +  conten… -      14 +  return… - 13  }  15  }  \ No newline at end of file + 11  func getC… 12  func getC…  + 12 -  retur… 13 +  conte…  +      14 +  retur…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf034.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf034.golden index 32f90649da12531bd2cb6fa45ff44fba7552e8f5..bafd04e96979aba50254250e9260e9079606bd6c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf034.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf034.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strin… -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strin… +  5  )   6  )    6     7    -  7  func main(…  8  func main(… +  7  func main(…  8  func main(…   …  @@ -9,5 +1…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getCo… 12  func getCo… - 12 -  return… 13 +  conten… -      14 +  return… - 13  }  15  }  \ No newline at end of file + 11  func getCo… 12  func getCo… + 12 -  return… 13 +  conten… +      14 +  return… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf035.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf035.golden index 94ec837f15afc57c55f11843c7200a7fce454222..8ac20fa259d92f9c4a13c1b7d0b3ece1ef65639c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf035.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf035.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "string… -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strin…  +  5  )   6  )    6     7    -  7  func main(…  8  func main()… +  7  func main(…  8  func main(…    …  @@ -9,5 +1…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getCo… 12  func getCon… - 12 -  return… 13 +  content… -      14 +  return … - 13  }  15  }  \ No newline at end of file + 11  func getCo… 12  func getCo…  + 12 -  return… 13 +  conten…  +      14 +  return…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf036.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf036.golden index ec7781a0cc6c81e034ec87566795e43b1a26ff01..a138a46233c89e3526ceb96c1c672aadd7daa919 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf036.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf036.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "string… -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "string… +  5  )   6  )    6     7    -  7  func main()…  8  func main()… +  7  func main()…  8  func main()…   …  @@ -9,5 +10…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getCon… 12  func getCon… - 12 -  return … 13 +  content… -      14 +  return … - 13  }  15  }  \ No newline at end of file + 11  func getCon… 12  func getCon… + 12 -  return … 13 +  content… +      14 +  return … + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf037.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf037.golden index ddfe2db319abb6e53aa35bd99b5fa7a5faf4031a..dd0cb8c2799baa35864ca202dd67a97b5434b8bc 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf037.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf037.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings" -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "string…  +  5  )   6  )    6     7    -  7  func main()…  8  func main() { +  7  func main()…  8  func main()…    …  @@ -9,5 +10…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getCon… 12  func getCont… - 12 -  return … 13 +  content … -      14 +  return c… - 13  }  15  }  \ No newline at end of file + 11  func getCon… 12  func getCon…  + 12 -  return … 13 +  content…  +      14 +  return …  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf038.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf038.golden index b577f654b09fa3bb14586154377a342fdd1863de..b0084aa014a51992926f11b26cef01b4fc21ab12 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf038.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf038.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings" -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings" +  5  )   6  )    6     7    -  7  func main() {  8  func main() { +  7  func main() {  8  func main() {   …  @@ -9,5 +10,…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getCont… 12  func getCont… - 12 -  return "… 13 +  content … -      14 +  return c… - 13  }  15  }  \ No newline at end of file + 11  func getCont… 12  func getCont… + 12 -  return "… 13 +  content … +      14 +  return c… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf039.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf039.golden index 4a73ba8c7996260c7aeec5c1b3c112dfbcc7223a..ae1bde4711283fe156a8a349f6499c030e3daa66 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf039.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf039.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {  8  func main() {  +  7  func main() {  8  func main() {    …  @@ -9,5 +10,…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getCont… 12  func getConte… - 12 -  return "… 13 +  content :… -      14 +  return co… - 13  }  15  }  \ No newline at end of file + 11  func getCont… 12  func getCont…  + 12 -  return "… 13 +  content …  +      14 +  return c…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf040.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf040.golden index d0ca9dd0d86109752758fb32f20222a26b265b9c..7efec8881d7252d4e0f5a444f372a19e12e5e035 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf040.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf040.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 …  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getConte… 12  func getConte… - 12 -  return "H… 13 +  content :… -      14 +  return co… - 13  }  15  }  \ No newline at end of file + 11  func getConte… 12  func getConte… + 12 -  return "H… 13 +  content :… +      14 +  return co… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf041.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf041.golden index 99d3354d5c221f3b2be2929e8f7a298ebcf3e703..10c4f687102fb8aed1d0456cde43a67ebf2a06d3 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf041.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf041.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 …  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getConte… 12  func getConten… - 12 -  return "H… 13 +  content :=… -      14 +  return con… - 13  }  15  }  \ No newline at end of file + 11  func getConte… 12  func getConte…  + 12 -  return "H… 13 +  content :…  +      14 +  return co…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf042.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf042.golden index c8a77bd140fc69c7a61a41ec236e685304e4f89e..9af1da8df7623454ca6d493baa5c1e248c988c8c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf042.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf042.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 …  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getConten… 12  func getConten… - 12 -  return "He… 13 +  content :=… -      14 +  return con… - 13  }  15  }  \ No newline at end of file + 11  func getConten… 12  func getConten… + 12 -  return "He… 13 +  content :=… +      14 +  return con… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf043.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf043.golden index 8ade1d1ea2b3cefc7a21e4f910fffe3ab5a1d89b..d4a9545f90cba3e7004f989b4b3231b921119b57 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf043.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf043.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @…  …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 …  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getConten… 12  func getContent… - 12 -  return "He… 13 +  content := … -      14 +  return cont… - 13  }  15  }  \ No newline at end of file + 11  func getConten… 12  func getConten…  + 12 -  return "He… 13 +  content :=…  +      14 +  return con…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf044.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf044.golden index 1ad6b5535fa110765d18bd5e2caf0b70e90e48e1..31b3e5b8a566adde3453c3681ecfbd14721ea8d3 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf044.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf044.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@   …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent… 12  func getContent… - 12 -  return "Hel… 13 +  content := … -      14 +  return cont… - 13  }  15  }  \ No newline at end of file + 11  func getContent… 12  func getContent… + 12 -  return "Hel… 13 +  content := … +      14 +  return cont… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf045.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf045.golden index 8ca1f58abdbcb8349874759a0c5524a52ad96be9..715b72802b8c564615318eec9afc966e4913ec4c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf045.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf045.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@   …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @…  …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent… 12  func getContent(… - 12 -  return "Hel… 13 +  content := s… -      14 +  return conte… - 13  }  15  }  \ No newline at end of file + 11  func getContent… 12  func getContent…  + 12 -  return "Hel… 13 +  content := …  +      14 +  return cont…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf046.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf046.golden index 03d1b9c64c67d800b91081b4e859338373f88f25..8f750e45dde66d7378ebd1c3cac9dcc42fd35928 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf046.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf046.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@   …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent(… 12  func getContent(… - 12 -  return "Hell… 13 +  content := s… -      14 +  return conte… - 13  }  15  }  \ No newline at end of file + 11  func getContent(… 12  func getContent(… + 12 -  return "Hell… 13 +  content := s… +      14 +  return conte… + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf047.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf047.golden index f004da12761c69ed654ff734ac766c3c8fea02eb..88d0334c820b4178059342fa2e1da9abc31554a7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf047.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf047.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@   …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent(… 12  func getContent()… - 12 -  return "Hell… 13 +  content := st… -      14 +  return content - 13  }  15  }  \ No newline at end of file + 11  func getContent(… 12  func getContent(…  + 12 -  return "Hell… 13 +  content := s…  +      14 +  return conte…  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf048.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf048.golden index 680fa666a5aef23bfa545dde302a09fa4f713b89..7f61027cd84e09baa6fbb032373a17dd2604e793 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf048.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf048.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent()… 12  func getContent()… - 12 -  return "Hello… 13 +  content := st… -      14 +  return content - 13  }  15  }  \ No newline at end of file + 11  func getContent()… 12  func getContent()… + 12 -  return "Hello… 13 +  content := st… +      14 +  return content + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf049.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf049.golden index 94761fc143dfc6db4fd0235b9fe6bd3a62042c20..9bb7c27c780a323330ce8809d49ca3a530e3446c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf049.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf049.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent()… 12  func getContent() … - 12 -  return "Hello… 13 +  content := str… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent()… 12  func getContent()…  + 12 -  return "Hello… 13 +  content := st…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf050.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf050.golden index ecaa8650163d8a8e7ef7310cb948b4053f744d19..ce5e92957c386876a86cb4560a4eadf8a7e08dc7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf050.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf050.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() … 12  func getContent() … - 12 -  return "Hello,… 13 +  content := str… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() … 12  func getContent() … + 12 -  return "Hello,… 13 +  content := str… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf051.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf051.golden index d51fb42d579badf489df6296ac367285bd8eb6a3..82adeb499fc4b5b6d15f9553765f3d1b4d1979dc 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf051.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf051.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() … 12  func getContent() s… - 12 -  return "Hello,… 13 +  content := stri… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() … 12  func getContent() …  + 12 -  return "Hello,… 13 +  content := str…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf052.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf052.golden index 425969f00c9e4b1e675d3f49171d321760148506..ae6953eb26ea0aaeddb450b4da018c5cdc3797d0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf052.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf052.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() s… 12  func getContent() s… - 12 -  return "Hello, … 13 +  content := stri… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() s… 12  func getContent() s… + 12 -  return "Hello, … 13 +  content := stri… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf053.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf053.golden index bdc318e5a6aba0b930a3b6ee64341a6c072dc00b..51a38de9c1ef157ddf956975a705bd8c99927d91 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf053.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf053.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() s… 12  func getContent() st… - 12 -  return "Hello, … 13 +  content := strin… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() s… 12  func getContent() s…  + 12 -  return "Hello, … 13 +  content := stri…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf054.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf054.golden index 6de336844a81e870ee71da54807aeccfde9900e2..24c8e4d4b1fb74c8c2ab1e52127bc7dfdef8cde0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf054.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf054.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() st… 12  func getContent() st… - 12 -  return "Hello, w… 13 +  content := strin… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() st… 12  func getContent() st… + 12 -  return "Hello, w… 13 +  content := strin… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf055.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf055.golden index fc3fd550e3a1510ea22cf0bdc0eb203d9eda19b2..cc0efd45a2cd5aa42b0734988df64ea2d05f880c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf055.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf055.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() st… 12  func getContent() str… - 12 -  return "Hello, w… 13 +  content := string… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() st… 12  func getContent() st…  + 12 -  return "Hello, w… 13 +  content := strin…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf056.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf056.golden index f401fd97cd95a5708429a0af399a774616ae2cdf..4de6f41ffaf0e87c4eda3263b57f42d84fc38aea 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf056.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf056.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() str… 12  func getContent() str… - 12 -  return "Hello, wo… 13 +  content := string… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() str… 12  func getContent() str… + 12 -  return "Hello, wo… 13 +  content := string… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf057.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf057.golden index 642474089eb8438137eddce59242c8156678ae56..77419b66cf6caa014ddcb5324c3d8fe08b0fbdda 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf057.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf057.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() str… 12  func getContent() stri… - 12 -  return "Hello, wo… 13 +  content := strings… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() str… 12  func getContent() str…  + 12 -  return "Hello, wo… 13 +  content := string…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf058.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf058.golden index 7020f20533466599c9eae92c692641e75aace894..5992c78e7352a1d59605deaa364ff8b3e6262bf9 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf058.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf058.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() stri… 12  func getContent() stri… - 12 -  return "Hello, wor… 13 +  content := strings… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() stri… 12  func getContent() stri… + 12 -  return "Hello, wor… 13 +  content := strings… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf059.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf059.golden index 3739c41cdd63edac3c99d0ff7e0f72b8bad57868..544a55196beb09c4784f668be8326bd5edb7e34e 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf059.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf059.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() stri… 12  func getContent() strin… - 12 -  return "Hello, wor… 13 +  content := strings.… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() stri… 12  func getContent() stri…  + 12 -  return "Hello, wor… 13 +  content := strings…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf060.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf060.golden index 88bee32f8faacc3d3070eea75045d963bcb3cd43..be01c935ada5686d689419f32873e280ac87b819 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf060.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf060.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() strin… 12  func getContent() strin… - 12 -  return "Hello, worl… 13 +  content := strings.… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() strin… 12  func getContent() strin… + 12 -  return "Hello, worl… 13 +  content := strings.… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf061.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf061.golden index ed76c34d49e9456c9c2b706256a60c4e637464ba..c7b19c70c3cf547cfd8d8468426a767c3f1bc8eb 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf061.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf061.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() strin… 12  func getContent() string… - 12 -  return "Hello, worl… 13 +  content := strings.T… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() strin… 12  func getContent() strin…  + 12 -  return "Hello, worl… 13 +  content := strings.…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf062.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf062.golden index 68cbde591ebe1686710fa0192a56ea2ac0f3d4ab..8cf7d33c9dc489bfac63f416d78f90e8c9b240ee 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf062.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf062.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string… 12  func getContent() string… - 12 -  return "Hello, world… 13 +  content := strings.T… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string… 12  func getContent() string… + 12 -  return "Hello, world… 13 +  content := strings.T… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf063.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf063.golden index 270624fb371a3586c3ccf639b85f9f5e8169c42a..ed1e489534d52ccb007df6102fcdd6955eacbe11 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf063.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf063.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string… 12  func getContent() string { - 12 -  return "Hello, world… 13 +  content := strings.To… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string…[38;2;76;79;105;48;2;241;239;239m 12  func getContent() string…  + 12 -  return "Hello, world… 13 +  content := strings.T…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf064.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf064.golden index 742ba611866c933ef59811466ed9cf5a38d1d1db..264b2f157f302c9efe51aa19fdf6652b21966357 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf064.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf064.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string { 12  func getContent() string { - 12 -  return "Hello, world!" 13 +  content := strings.To… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string { 12  func getContent() string { + 12 -  return "Hello, world!" 13 +  content := strings.To… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf065.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf065.golden index 730da08d4d6b3b5232df61c7d9021a7d2a8f135e..769077f8ddd3f8945e593a7dc829e32d0fc2a0da 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf065.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf065.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string { 12  func getContent() string {  - 12 -  return "Hello, world!" 13 +  content := strings.ToU… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string { 12  func getContent() string {  + 12 -  return "Hello, world!" 13 +  content := strings.To…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf066.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf066.golden index 2fbccef307eda98ec1b2ff5c5e32fd9dc90a69b7..41175031e8f238872ba86604bed92cc3852ee38f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf066.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf066.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToU… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToU… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf067.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf067.golden index ecc226a80c7a442b1cccc55233909617fd327532..f6988276acd56bd73a1e4f5ae3896c423a6d2b06 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf067.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf067.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUp… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToU…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf068.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf068.golden index d9d30f9898e51307420665a76f5ab0cd1405f38c..fc6241eae81aa7d386813dc04432d47876ce0fd7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf068.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf068.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUp… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUp… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf069.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf069.golden index 1f796501fc35398bacbab2414be5d1b1ca1ffda2..7d9ec994c9e1e13c40f954879feb1a5d1f600439 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf069.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf069.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpp… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUp…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf070.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf070.golden index 6e75a491e398f6215bc1e3473f26a4d8c8727aff..2083a6eae970030b41a3cd0b941863927c55a185 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf070.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf070.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpp… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpp… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf071.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf071.golden index 5598999b53f0444ec82a84aab31d5050e22a0c5d..760cdb047ee5ac89224e2c48b663bb09ae577433 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf071.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf071.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUppe… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpp…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf072.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf072.golden index 1a62bde3ad9bcd11a320aebaa706234e05237bc8..b38d7f6d21bd1f4f4e8f1929bb0d0c12f509e184 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf072.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf072.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUppe… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUppe… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf073.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf073.golden index f07b0b6f73330a23f59c28058e09893447c9a748..46afcacf662110f5f75a26556e554bd871df6d45 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf073.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf073.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUppe…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf074.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf074.golden index e9b81c3709c5d0a587156b0570a9f82f71556a08..414b8830390e69f43c724734053a31a2461b0d41 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf074.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf074.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf075.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf075.golden index 695e08b6de2977a87f4201d4bb65c645cdf25b22..e64acc77814513ff1650e77ddab0e195cb2b2cdc 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf075.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf075.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper(… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf076.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf076.golden index f947ca0edb808b63b782b60e4754ae4ceb8ae349..d2b86deb4a1113f6313c40caf31837d4900c64eb 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf076.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf076.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper(… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper(… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf077.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf077.golden index 34889805ca9a6b10ab165e8772a8d2a440a4024a..b22b38baab4104282cf5dc1d7a49d0882c883fdd 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf077.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf077.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper(…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf078.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf078.golden index a38efeccbeeb6f433ed37c6dcd9f4040307c1bcf..12827013422b14ab15f0d124a65588c5ab1a47dc 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf078.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf078.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf079.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf079.golden index 7c5ad6184ecc5ca6c9aaf319cd19dd8952cbfb1e..2d50d36a9bd2b63bec0e0b463dccb5a0b7ebfd8d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf079.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf079.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("H… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf080.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf080.golden index 9f8268b85a3304fe9c02b4933c462614b6641971..dcfc005d89889ca3216f1d13d578332f24519b88 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf080.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf080.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("H… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("H… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf081.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf081.golden index 9b196dde1502783cbfecf8f2eccf69929ff7d0e3..a8ba35922b863854e348ee949bca17304598158f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf081.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf081.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("He… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("H…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf082.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf082.golden index beb31c279cafd0d4057a934df7e8b9cfb97b2add..7160250698adaad0fb9fdf21e6602866577c2e95 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf082.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf082.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("He… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("He… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf083.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf083.golden index 3cc4e51554c89c1f92f95c3cf9e765206802e1a7..2aa2d2d1e9cd296520d4c0a0362586d221ea5547 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf083.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf083.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hel… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("He…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf084.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf084.golden index e1088062d155a0c8d6060ccf086b123cb8bc83f8..365fa7567ae83238ef14c9853b6019f8d9d76a81 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf084.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf084.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hel… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hel… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf085.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf085.golden index ae34624943ffc9720e459c116e9a52eefe64dbf0..591f662b6b13b1a93be2394e776aa663585659b2 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf085.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf085.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hell… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hel…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf086.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf086.golden index c796ddbb7d60951efa1075f19f631063c4344d1c..4cbe0d54aae59078129851e100b6228f678b00d0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf086.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf086.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hell… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hell… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf087.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf087.golden index 150c205dea385ef8f435f4a1997162dada5ef6e2..b03ee8eadedfda27d6989fa531603bac3b653f59 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf087.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf087.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hell…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf088.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf088.golden index e7732246f361500be015ff355ac2a22969dc234e..dad8e4a09a350c3085942ab29c31fb0476129a76 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf088.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf088.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf089.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf089.golden index 2e87019222c8c9d9ab35a2edba051d9abbb35758..361ce9c4119c1ec870b3f16775dc9ca5fc28bc71 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf089.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf089.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello,… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf090.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf090.golden index 4b6f5af7ad23fa326e64e5bc153cdca5131c9370..ac5688381c2a73dd8e83189f88ce1464ba55362d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf090.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf090.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello,… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello,… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf091.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf091.golden index c91af1fe7772558f51e193f97fd6b1fafd0b4bd6..9335a76abd6d37a2dc52c20bf38f1e3470455ebe 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf091.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf091.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, … -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello,…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf092.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf092.golden index 3cccf9fe7856dec65a3ded19be178c1ef6310427..a089778adc04f6ae5ebc54c0576babaae46c2579 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf092.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf092.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, … -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, … +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf093.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf093.golden index 526df4c34ce93abc73c69815f35c50dc2cf22f86..d74e0e4dfd8964ad1dbce8d4b6bab2629999939b 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf093.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf093.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, W… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, …  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf094.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf094.golden index 898b7fe69ccc18803a86e5a8ddfa64628878f40d..159da99b8898d95891669209ebe5369e52d105de 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf094.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf094.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, W… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, W… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf095.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf095.golden index 08da2f518c583e2aaa8a3e5553535403b0e882c8..7bf03eaa9224a70e982ddce0073d9f36f04ae547 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf095.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf095.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Wo… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, W…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf096.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf096.golden index 6572fd06f0ccd045a3b0c732550f61bea6212a5e..e3135d8681efc69853b2381184d4f7b8a16e8b32 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf096.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf096.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Wo… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Wo… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf097.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf097.golden index 4fe8a543581660bec84bb36c6c69e5662b602bbd..de2c0c5aa41e04c385374e75a2a0f0255faaefce 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf097.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf097.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Wor… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Wo…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf098.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf098.golden index 9f58d145e7c51d0fe33620aa32e67b4913a06bc4..56052a977fce039b57aeee0d0ec402a1d1a04bed 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf098.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf098.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Wor… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Wor… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf099.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf099.golden index d1d405ae0735057efb1a86972b1604c55932adb9..f61adea5d8c82ff47df19349face74487f1257ce 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf099.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf099.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Worl… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Wor…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf100.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf100.golden index 0d98b2832ff12bd4758fe352ac7faef59f774b75..58be05012e0b61d77d34126e7741d50cbbd41277 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf100.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf100.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Worl… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Worl… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf101.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf101.golden index 09b06341a6d3ef10ab389e7fbbdcd2dfb6b18277..a1f145e36a97eae035efea876b85d32b3fc390ff 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf101.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf101.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, Worl…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf102.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf102.golden index 0c41c9283b62a11f644cfa3d48d36bd451b0ab86..6fd5678e6859b1fe5e54afb1b54dbc894b0595d4 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf102.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf102.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf103.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf103.golden index 080691afe7d95b7f375e804ef94ea040327adb32..58d22841956cfae75a87aaeed04eb8b3dd7ca586 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf103.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf103.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf104.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf104.golden index 49660f90c921295bd85669649c42f990cc5fb8ab..31c3e8981d90b33b7eb45e9c8b1bddf6cc36efca 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf104.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf104.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!… -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!… +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf105.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf105.golden index 4cc20b9bb78466888aedcd5d77610c67ea2b4129..25254c9b09f9e582887c8bc738de4d1e30ef260c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf105.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf105.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!") -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!…  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf106.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf106.golden index 1d297be1126e10392c6098f912f1fa7f21108fb2..5546a1538824cf03333077aa3b8bcc02f30d5f14 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf106.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf106.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!") -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!") +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf107.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf107.golden index 1bd852aeafb29570bf7712877a082f2a4ee75efb..fcee0eac1c1e60e4bfa27522ede8c7fe0ca9a49e 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf107.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf107.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf108.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf108.golden index e22a98ecf771bc651d26af440a361286dcb167f7..376bae2594d8e175cdd84b90846fe43c639c4d69 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf108.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf108.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf109.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf109.golden index f9c4df3820188b745ecbf7a3ce6ad03b76ae3fdc..95d673f67bfd11f2bf5f56b6cc33960160f4be1f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf109.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf109.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf110.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf110.golden index 23a88346fe130912de771815531d4cdd7d930899..12fb2103fda145ee2c326171ba74ede6b8500a69 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf110.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Split/WidthOf110.golden @@ -1,15 +1,15 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf011.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf011.golden index 6d9e7fb12dbc617fec93ba909fc18c6e4db889c6..980ddd8d547ee6d9622b58b31dc52c050bf07c55 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf011.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf011.golden @@ -1,16 +1,16 @@   …   …  …   2   2    -  3   3  … -  4   4  … -     5 + … -  5   6  ) +  3   3  … +  4   4  … +     5 + … +  5   6  )   6   7    -  7   8  … +  7   8  …   …   …  … -  9  10  } +  9  10  }  10  11    - 11  12  … - 12    - … -    13 + … -    14 + … - 13  15  } \ No newline at end of file + 11  12  … + 12    - … +    13 + … +    14 + … + 13  15  } \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf012.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf012.golden index 748489c58f16c60d1f8517cdd494acf8a0029800..118d4c2e1865d9cc50cf1a9f4187792f1c368772 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf012.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf012.golden @@ -1,16 +1,16 @@   …   …  @…   2   2    -  3   3  i… -  4   4  … -     5 +  … -  5   6  )  +  3   3  i… +  4   4   … +     5 +  … +  5   6  )    6   7    -  7   8  f… +  7   8  f…   …   …  @… -  9  10  }  +  9  10  }   10  11    - 11  12  f… - 12    -  … -    13 +  … -    14 +  … - 13  15  }  \ No newline at end of file + 11  12  f… + 12    -  … +    13 +  … +    14 +  … + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf013.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf013.golden index bb95009a65b7290bf9ee59d1f23981ea7e40e2c6..abbdb692cb6f6c09df620c88f6b0a6b86e4ef96f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf013.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf013.golden @@ -1,16 +1,16 @@   …   …  @@…   2   2    -  3   3  im… -  4   4  … -     5 +  … -  5   6  )  +  3   3  im… +  4   4   … +     5 +  … +  5   6  )    6   7    -  7   8  fu… +  7   8  fu…   …   …  @@… -  9  10  }  +  9  10  }   10  11    - 11  12  fu… - 12    -  … -    13 +  … -    14 +  … - 13  15  }  \ No newline at end of file + 11  12  fu… + 12    -  … +    13 +  … +    14 +  … + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf014.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf014.golden index 3fe21e837dad1bb327f40dbbb1dced49a67517f9..afab1410ed5fa9a7ff215fc3f7ca69123ce48981 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf014.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf014.golden @@ -1,16 +1,16 @@   …   …  @@ …   2   2    -  3   3  imp… -  4   4  … -     5 +  … -  5   6  )  +  3   3  imp… +  4   4   … +     5 +  … +  5   6  )    6   7    -  7   8  fun… +  7   8  fun…   …   …  @@ … -  9  10  }  +  9  10  }   10  11    - 11  12  fun… - 12    -  … -    13 +  … -    14 +  … - 13  15  }  \ No newline at end of file + 11  12  fun… + 12    -  … +    13 +  … +    14 +  … + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf015.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf015.golden index ef2d752d9bf77ca4bf0bfe918f97247f8ff4a227..47898c566201f8d5c4ce8cb87e2e317f9157f323 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf015.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf015.golden @@ -1,16 +1,16 @@   …   …  @@ -…   2   2    -  3   3  impo… -  4   4  … -     5 +  … -  5   6  )  +  3   3  impo… +  4   4   … +     5 +  … +  5   6  )    6   7    -  7   8  func… +  7   8  func…   …   …  @@ -… -  9  10  }  +  9  10  }   10  11    - 11  12  func… - 12    -  … -    13 +  … -    14 +  … - 13  15  }  \ No newline at end of file + 11  12  func… + 12    -  … +    13 +  … +    14 +  … + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf016.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf016.golden index 02215b20ab147994f0b2912bae955476bb22f256..b5d0f35783d462c9438357bef765d2d60e43ed19 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf016.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf016.golden @@ -1,16 +1,16 @@   …   …  @@ -2…   2   2    -  3   3  impor… -  4   4  "… -     5 +  "… -  5   6  )  +  3   3  impor… +  4   4   "… +     5 +  "… +  5   6  )    6   7    -  7   8  func … +  7   8  func …   …   …  @@ -9… -  9  10  }  +  9  10  }   10  11    - 11  12  func … - 12    -  r… -    13 +  c… -    14 +  r… - 13  15  }  \ No newline at end of file + 11  12  func … + 12    -  r… +    13 +  c… +    14 +  r… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf017.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf017.golden index 75fb9e340f6ba08d9a75c2070f47cbc4f204a807..58ed4f19ce4870ebe5dd6296c145d13f08f2044f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf017.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf017.golden @@ -1,16 +1,16 @@   …   …  @@ -2,…   2   2    -  3   3  import… -  4   4  "f… -     5 +  "s… -  5   6  )  +  3   3  import… +  4   4   "f… +     5 +  "s… +  5   6  )    6   7    -  7   8  func m… +  7   8  func m…   …   …  @@ -9,… -  9  10  }  +  9  10  }   10  11    - 11  12  func g… - 12    -  re… -    13 +  co… -    14 +  re… - 13  15  }  \ No newline at end of file + 11  12  func g… + 12    -  re… +    13 +  co… +    14 +  re… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf018.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf018.golden index b88efe67b7c2bfa9fc4b21673335d62bcff4d670..73b420a33879df651950fb58d29e985f3d9d5e0a 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf018.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf018.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6…   2   2    -  3   3  import ( -  4   4  "fm… -     5 +  "st… -  5   6  )  +  3   3  import ( +  4   4   "fm… +     5 +  "st… +  5   6  )    6   7    -  7   8  func ma… +  7   8  func ma…   …   …  @@ -9,5… -  9  10  }  +  9  10  }   10  11    - 11  12  func ge… - 12    -  ret… -    13 +  con… -    14 +  ret… - 13  15  }  \ No newline at end of file + 11  12  func ge… + 12    -  ret… +    13 +  con… +    14 +  ret… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf019.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf019.golden index 7674dc6548331bd0f3525aa576887aa9d2a2a08d..e67fa43de7a3152291a9b08fad158fe4b8d8ff5a 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf019.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf019.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 …   2   2    -  3   3  import (  -  4   4  "fmt" -     5 +  "str… -  5   6  )  +  3   3  import (  +  4   4   "fmt" +     5 +  "str… +  5   6  )    6   7    -  7   8  func mai… +  7   8  func mai…   …   …  @@ -9,5 … -  9  10  }  +  9  10  }   10  11    - 11  12  func get… - 12    -  retu… -    13 +  cont… -    14 +  retu… - 13  15  }  \ No newline at end of file + 11  12  func get… + 12    -  retu… +    13 +  cont… +    14 +  retu… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf020.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf020.golden index b09286df1c10dad61c1125d79ff3b309ba681835..07e8afd1fb5d87b6f7ac1a833989e9c73f7a08ae 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf020.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf020.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +…   2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "stri… -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "stri… +  5   6  )    6   7    -  7   8  func main… +  7   8  func main…   …   …  @@ -9,5 +… -  9  10  }  +  9  10  }   10  11    - 11  12  func getC… - 12    -  retur… -    13 +  conte… -    14 +  retur… - 13  15  }  \ No newline at end of file + 11  12  func getC… + 12    -  retur… +    13 +  conte… +    14 +  retur… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf021.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf021.golden index fe16360c1bbb5a60342a23e8e893518a428a6758..94299ef624a3fbfeb83bfd0a8c412f040314afd4 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf021.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf021.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2…   2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strin… -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strin… +  5   6  )    6   7    -  7   8  func main(… +  7   8  func main(…   …   …  @@ -9,5 +1… -  9  10  }  +  9  10  }   10  11    - 11  12  func getCo… - 12    -  return… -    13 +  conten… -    14 +  return… - 13  15  }  \ No newline at end of file + 11  12  func getCo… + 12    -  return… +    13 +  conten… +    14 +  return… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf022.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf022.golden index b06eb126c1d5120653f99761747b34a739019774..38c4c162a2bdfcbb2aec1952c7d797dadbe8c9d9 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf022.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf022.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,…   2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "string… -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "string… +  5   6  )    6   7    -  7   8  func main()… +  7   8  func main()…   …   …  @@ -9,5 +10… -  9  10  }  +  9  10  }   10  11    - 11  12  func getCon… - 12    -  return … -    13 +  content… -    14 +  return … - 13  15  }  \ No newline at end of file + 11  12  func getCon… + 12    -  return … +    13 +  content… +    14 +  return … + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf023.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf023.golden index 7f6fb654f9e4db70cae4bd5d9cd543f2e93874e1..8d96b56fe8a222fadf2b62364256c2597a4f5e2d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf023.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf023.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7…   2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings" -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings" +  5   6  )    6   7    -  7   8  func main() { +  7   8  func main() {   …   …  @@ -9,5 +10,… -  9  10  }  +  9  10  }   10  11    - 11  12  func getCont… - 12    -  return "… -    13 +  content … -    14 +  return c… - 13  15  }  \ No newline at end of file + 11  12  func getCont… + 12    -  return "… +    13 +  content … +    14 +  return c… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf024.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf024.golden index 9b9ca147e01cd264439e57272794584726f4b55c..009000c442042aabb50bdff598002b1b92e5d0fc 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf024.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf024.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 …   2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6… -  9  10  }  +  9  10  }   10  11    - 11  12  func getConte… - 12    -  return "H… -    13 +  content :… -    14 +  return co… - 13  15  }  \ No newline at end of file + 11  12  func getConte… + 12    -  return "H… +    13 +  content :… +    14 +  return co… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf025.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf025.golden index 2b2a75a47ff2868ffe9a226c4b26a199a71377a0..36412d17092b292702df8dccb64da381f6b7439f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf025.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf025.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @…   2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 … -  9  10  }  +  9  10  }   10  11    - 11  12  func getConten… - 12    -  return "He… -    13 +  content :=… -    14 +  return con… - 13  15  }  \ No newline at end of file + 11  12  func getConten… + 12    -  return "He… +    13 +  content :=… +    14 +  return con… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf026.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf026.golden index f3b513a268e51e80540d2f3234ac3ea8a0083457..d6ce5b40b7f1ded424b842c7419ebfd3422d8bea 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf026.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf026.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@    2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @… -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent… - 12    -  return "Hel… -    13 +  content := … -    14 +  return cont… - 13  15  }  \ No newline at end of file + 11  12  func getContent… + 12    -  return "Hel… +    13 +  content := … +    14 +  return cont… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf027.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf027.golden index efcdc287e72e527f8a7ca6fe96b9a69a17fbfdef..1d8d1a7b102989665a6fb5daa3f45671e240bb9a 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf027.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf027.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@  -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent(… - 12    -  return "Hell… -    13 +  content := s… -    14 +  return conte… - 13  15  }  \ No newline at end of file + 11  12  func getContent(… + 12    -  return "Hell… +    13 +  content := s… +    14 +  return conte… + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf028.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf028.golden index 5e93bd89799535cc8adc78443f5ceb1fd2906e9a..cd64972ae97ea3a43e6d8bbec01f6556e14ba209 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf028.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf028.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent()… - 12    -  return "Hello… -    13 +  content := st… -    14 +  return content - 13  15  }  \ No newline at end of file + 11  12  func getContent()… + 12    -  return "Hello… +    13 +  content := st… +    14 +  return content + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf029.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf029.golden index 31d19ed9ea527f53243b5cf29dc43601e5eedc47..9630522016ffb5c9fbcc1b35c79af01807a461d6 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf029.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf029.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() … - 12    -  return "Hello,… -    13 +  content := str… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() … + 12    -  return "Hello,… +    13 +  content := str… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf030.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf030.golden index c6f75f81c34d5a7009ae8e21b98ef04bb5569014..c968b68bbc5571f9e3a0ca7a57b8465c8d5d501c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf030.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf030.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() s… - 12    -  return "Hello, … -    13 +  content := stri… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() s… + 12    -  return "Hello, … +    13 +  content := stri… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf031.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf031.golden index eac4baf479645e413a609c06fb2ee8593e08daa7..1e8e394258062076591dbadd12ab6e3062b354e1 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf031.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf031.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() st… - 12    -  return "Hello, w… -    13 +  content := strin… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() st… + 12    -  return "Hello, w… +    13 +  content := strin… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf032.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf032.golden index 6ae377659bd78c0a0675678679d5961ce1d81b29..106501b3c9003cd8d663ee80f6ff7e8c6432e413 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf032.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf032.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() str… - 12    -  return "Hello, wo… -    13 +  content := string… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() str… + 12    -  return "Hello, wo… +    13 +  content := string… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf033.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf033.golden index 69b1579b4b0ac62c4f322d2b8f0c69cefb60dc55..f1dcb3abfb3eda3d465699211b3fae06258e55c5 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf033.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf033.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() stri… - 12    -  return "Hello, wor… -    13 +  content := strings… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() stri… + 12    -  return "Hello, wor… +    13 +  content := strings… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf034.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf034.golden index 9424324d0be67db8976097d5514426c771cdc113..5fa2170cf92f1881d4ba6e7f7a1b21a7092ed448 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf034.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf034.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() strin… - 12    -  return "Hello, worl… -    13 +  content := strings.… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() strin… + 12    -  return "Hello, worl… +    13 +  content := strings.… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf035.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf035.golden index d10efbabae25a2634d8394546d0739214809f235..cc742db50aa4a556f10f963483e267783e2ae463 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf035.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf035.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string… - 12    -  return "Hello, world… -    13 +  content := strings.T… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string… + 12    -  return "Hello, world… +    13 +  content := strings.T… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf036.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf036.golden index 0ba4930b0ba7d3e8aedabebe42a72f20e3358cf1..9ec6dbba298c91f82166508728172710372b77b5 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf036.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf036.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string { - 12    -  return "Hello, world!" -    13 +  content := strings.To… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string { + 12    -  return "Hello, world!" +    13 +  content := strings.To… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf037.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf037.golden index d472073751d5f12fede2c3581b472a219f4066ac..f33c7a7aef1dc8c2d56e61cfbef846fdf4641ec6 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf037.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf037.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToU… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToU… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf038.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf038.golden index 0c97edfa4534ae8043aca70ecad07cb9b7950430..c87bc8d61c1341c9a066c501ff5b230b04ce0277 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf038.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf038.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUp… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUp… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf039.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf039.golden index 1a69f9119aebfde0aa4dde24ae326075f69d2d62..ab2f47e1d7e5ada9820747d9305cba1e7aa63710 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf039.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf039.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpp… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpp… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf040.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf040.golden index 1fa51a9e2840438aa94f306a294a82d22d0f5482..bc1c6c04db45d3d8dfddf23440dcfa430cec7fb0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf040.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf040.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUppe… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUppe… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf041.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf041.golden index 6e103c6d200dedfe7c207184ffffa8a084078743..aa382a513632ffd40e9fee31463d5cb29213e441 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf041.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf041.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf042.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf042.golden index 5947ba3147292f9246d01fb10ae7633759e572a2..6c721a82c4afc6423070b7c07cf909ec055bcc5d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf042.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf042.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper(… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper(… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf043.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf043.golden index 26853c9f6c01987d603fbdcec1f7c899c54cebc8..d2d80c72db4368679e3cc87c89143633cec3d8fd 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf043.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf043.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf044.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf044.golden index 819b8446bf1db7537c87baac7a68036199f7b51e..943719010fe4e96b29d702c2e49533bc5577cd2b 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf044.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf044.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("H… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("H… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf045.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf045.golden index c3a25aa0dd0d83da61eab7b5fb6077bfed8f0339..591ce67300df856c778afe8c883818cd0ef40918 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf045.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf045.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("He… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("He… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf046.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf046.golden index 1066e2babf1558e32c84ff6ca62b95c1d71aa8f1..25ab875c4f1b5cb40ce08eb24503e93aa79bb083 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf046.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf046.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hel… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hel… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf047.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf047.golden index 17a6b9b9e545377987264a54805c4d21403938bd..58a8199865345c094709c677c238af4d55126867 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf047.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf047.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hell… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hell… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf048.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf048.golden index 8143d3072122759101dcf6bc9167a1fee6562dbf..83ede19e2d8d68234852af840c82cc98d6358968 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf048.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf048.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf049.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf049.golden index 8996acad434b941424e18b97f3e8a5c8ef7b9dd3..f531bcbf029d81258a3a77073cc469dfab59da36 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf049.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf049.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello,… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello,… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf050.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf050.golden index eb97f1bcf6e3de3ef6e8142756663b00355d1284..42d3bf74913c04219f87a6044becf0967ae35046 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf050.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf050.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, … -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, … +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf051.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf051.golden index b3d8be7afe555fa8f9bf22184af5ced239efb78d..8a0e974e715ecfd2d15beb026b8887eb98aa15c2 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf051.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf051.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, W… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, W… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf052.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf052.golden index 2d3ce57371b223e89e9ba39e22ebfcd308be6d25..5eaaa47e038ee480ebd8825cc8b7cfe3b05686f7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf052.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf052.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, Wo… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, Wo… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf053.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf053.golden index 42f239edc1cbe274bc88c111e25810eb4fc6dd2a..08ad6ddffccc6ba92cf63749775a5ccbb6ffdfec 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf053.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf053.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, Wor… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, Wor… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf054.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf054.golden index ed1a28da0da183fbe275eb6411e6ddab4d92c6f9..2dff941c3c03509f116b639f725995df15e050e7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf054.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf054.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, Worl… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, Worl… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf055.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf055.golden index 1a5474f10bb0ae447c740bb0ffa8588852c47d86..6c4244529a4fa5aa863b4d7654fa230417d8415f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf055.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf055.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf056.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf056.golden index da13ee8e21c0a763a11d61170e669407c882523b..e142e86ec29f9ccfc392512fb6a1ebdd7ef47b79 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf056.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf056.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!… -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!… +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf057.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf057.golden index ab82a59950c59f7dddd899d591098a9c50f5888b..0fc779146b016da6d50f41adef48995ac66ee3ce 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf057.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf057.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!") -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!") +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf058.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf058.golden index 285caf3659ba538e0c12da796836045311ecad67..4833a8a0263aada505f2e115c5dfb9fc469def67 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf058.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf058.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf059.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf059.golden index 4f27df6e9a17775b68ceabb81828878adb2d4da6..7b2771b39f26769a36ce9acd7c5b13bf61108298 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf059.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf059.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf060.golden b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf060.golden index 0131c7b18d76b8df2eb5ee0e5d2927eaff35f001..6cff1caaad1de797a272c79b02e692268b5649da 100644 --- a/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf060.golden +++ b/internal/exp/diffview/testdata/TestDiffViewWidth/Unified/WidthOf060.golden @@ -1,16 +1,16 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf00.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf00.golden index c9848ade3c32d3c908502850c017371a12c36ab3..9ec2cc1f1d60f2ab2e26aea0ac9860accd927534 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf00.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf00.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5  )   5  )  +  5  )   5  )    6     6    -  7  func main() {   7  func main() {  -  8 -  fmt.Println("Hello,…  8 +  content := "Hello, … -       9 +  fmt.Println(content) -  9  }  10  }  \ No newline at end of file +  7  func main() {   7  func main() {  +  8 -  fmt.Println("Hello,…  8 +  content := "Hello, … +       9 +  fmt.Println(content) +  9  }  10  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf01.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf01.golden index f136651ffebaa946c9d74b0338653d2127de813c..473d996d55dd396c57a3f54ac33080501d3f692c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf01.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf01.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …unc main() {   7  …unc main() {  -  8 -… fmt.Println("Hello, …  8 +… content := "Hello, w… -       9 +… fmt.Println(content)  -  9    10    \ No newline at end of file +  7  …unc main() {   7  …unc main() {  +  8 -… fmt.Println("Hello, …  8 +… content := "Hello, w… +       9 +… fmt.Println(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf02.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf02.golden index 4aefe2e840d519f13e6f189ef815fdfa913d0ddc..270924bb42b6a2c148b550ae67c74fdb213980a9 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf02.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf02.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …nc main() {   7  …nc main() {  -  8 -… fmt.Println("Hello, w…  8 +… content := "Hello, wo… -       9 +… fmt.Println(content)  -  9    10    \ No newline at end of file +  7  …nc main() {   7  …nc main() {  +  8 -… fmt.Println("Hello, w…  8 +… content := "Hello, wo… +       9 +… fmt.Println(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf03.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf03.golden index 663e619ab981b85f5abbadba4c2f9d87aebd4883..a2d2007c22d981307c17247a23f0096a7d2f72b0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf03.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf03.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …c main() {   7  …c main() {  -  8 -… fmt.Println("Hello, wo…  8 +… content := "Hello, wor… -       9 +… fmt.Println(content)  -  9    10    \ No newline at end of file +  7  …c main() {   7  …c main() {  +  8 -… fmt.Println("Hello, wo…  8 +… content := "Hello, wor… +       9 +… fmt.Println(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf04.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf04.golden index 38634c92e31c01d8c0aeee2e66b1dc80677c9ea7..407565b5ce6fe40545656ef814309fe4f35e7679 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf04.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf04.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  … main() {   7  … main() {  -  8 -…fmt.Println("Hello, wor…  8 +…content := "Hello, worl… -       9 +…fmt.Println(content)  -  9    10    \ No newline at end of file +  7  … main() {   7  … main() {  +  8 -…fmt.Println("Hello, wor…  8 +…content := "Hello, worl… +       9 +…fmt.Println(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf05.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf05.golden index a3617ce891cda2c9a83605845e13cdb00fd04117..7e2988668b1be238ffe74db71886312f18c59a9d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf05.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf05.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …main() {   7  …main() {  -  8 -…mt.Println("Hello, worl…  8 +…ontent := "Hello, world… -       9 +…mt.Println(content)  -  9    10    \ No newline at end of file +  7  …main() {   7  …main() {  +  8 -…mt.Println("Hello, worl…  8 +…ontent := "Hello, world… +       9 +…mt.Println(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf06.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf06.golden index eb417ae0ccbe29a97943d7d73382e66fb8747978..c0eebb94811fc3963094b942a6e3d92313570901 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf06.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf06.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …ain() {   7  …ain() {  -  8 -…t.Println("Hello, world…  8 +…ntent := "Hello, world!" -       9 +…t.Println(content)  -  9    10    \ No newline at end of file +  7  …ain() {   7  …ain() {  +  8 -…t.Println("Hello, world…  8 +…ntent := "Hello, world!" +       9 +…t.Println(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf07.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf07.golden index 899748cccb9dc66dfc06632025cc90cdea8f49b8..d2d3307543e4ce996c82c51a5c30a75155c51865 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf07.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf07.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …in() {   7  …in() {  -  8 -….Println("Hello, world!…  8 +…tent := "Hello, world!"  -       9 +….Println(content)  -  9    10    \ No newline at end of file +  7  …in() {   7  …in() {  +  8 -….Println("Hello, world!…  8 +…tent := "Hello, world!"  +       9 +….Println(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf08.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf08.golden index 8118b8268b334a246999396ccc22b8fcf5580eed..13d4a33d04fe3bf2a229c982082f9a13203ced3e 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf08.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf08.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …n() {   7  …n() {  -  8 -…Println("Hello, world!")  8 +…ent := "Hello, world!"  -       9 +…Println(content)  -  9    10    \ No newline at end of file +  7  …n() {   7  …n() {  +  8 -…Println("Hello, world!")  8 +…ent := "Hello, world!"  +       9 +…Println(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf09.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf09.golden index a5fc063e7e3a3d692d5bf77a61bbc0941b38d8a8..393ec8889fce9e10eaf03c6648b160b5193d1f35 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf09.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf09.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …() {   7  …() {  -  8 -…rintln("Hello, world!")   8 +…nt := "Hello, world!"  -       9 +…rintln(content)  -  9    10    \ No newline at end of file +  7  …() {   7  …() {  +  8 -…rintln("Hello, world!")   8 +…nt := "Hello, world!"  +       9 +…rintln(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf10.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf10.golden index 3476582fd1f855920427bafde2b5dc36486343e1..90dcd606b64433a056bcf54b69e3467251d465a1 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf10.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf10.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …) {  [38;2;58;57;67;48;2;223;219;221m 7  …) {  -  8 -…intln("Hello, world!")   8 +…t := "Hello, world!"  -       9 +…intln(content)  -  9    10    \ No newline at end of file +  7  …) {   7  …) {  +  8 -…intln("Hello, world!")   8 +…t := "Hello, world!"  +       9 +…intln(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf11.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf11.golden index 26f063c6f74d0bbd8b8be62146b3419cf8080325..cede44c77dc6a1ad54e03e33a855ec1b8bee42eb 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf11.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf11.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  … {   7  … {  -  8 -…ntln("Hello, world!")   8 +… := "Hello, world!"  -       9 +…ntln(content)  -  9    10    \ No newline at end of file +  7  … {   7  … {  +  8 -…ntln("Hello, world!")   8 +… := "Hello, world!"  +       9 +…ntln(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf12.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf12.golden index e775533e802c39a26c6df11afbadb91256f00467..f7713314c869c193271796f8b44669708c12fd51 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf12.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf12.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7  …{   7  …{  -  8 -…tln("Hello, world!")   8 +…:= "Hello, world!"  -       9 +…tln(content)  -  9    10    \ No newline at end of file +  7  …{   7  …{  +  8 -…tln("Hello, world!")   8 +…:= "Hello, world!"  +       9 +…tln(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf13.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf13.golden index 3f50e8681a9ee20368681ba422630826fd8f3d23..ec342bcd1a9dc48b955f1c585af2fd3c15591cdd 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf13.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf13.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7     7    -  8 -…ln("Hello, world!")   8 +…= "Hello, world!"  -       9 +…ln(content)  -  9    10    \ No newline at end of file +  7  …   7  …  +  8 -…ln("Hello, world!")   8 +…= "Hello, world!"  +       9 +…ln(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf14.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf14.golden index 5447ca0f0f4bca5561c9794f4a5700a3dc04f96b..53cea6723e9d28d66cfac2371dc992d70a2bfd90 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf14.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf14.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7     7    -  8 -…n("Hello, world!")   8 +… "Hello, world!"  -       9 +…n(content)  -  9    10    \ No newline at end of file +  7  …   7  …  +  8 -…n("Hello, world!")   8 +… "Hello, world!"  +       9 +…n(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf15.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf15.golden index 64f046c56b56560a4dd92d2d794e05281a815798..2fb5652a4e2d05f3b4efd6e58cc9ecb71ce545c0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf15.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf15.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7     7    -  8 -…("Hello, world!")   8 +…"Hello, world!"  -       9 +…(content)  -  9    10    \ No newline at end of file +  7  …   7  …  +  8 -…("Hello, world!")   8 +…"Hello, world!"  +       9 +…(content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf16.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf16.golden index b207f7f1dc1d4d25c5efd9fd6cd38673178ef1f0..adf8f07ef00c85c0bffc683abd31741b38d8f0d2 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf16.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf16.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7     7    -  8 -…"Hello, world!")   8 +…Hello, world!"  -       9 +…content)  -  9    10    \ No newline at end of file +  7  …   7  …  +  8 -…"Hello, world!")   8 +…Hello, world!"  +       9 +…content)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf17.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf17.golden index 5d659dae8b830adf3a1ac578c1915d186b23157d..d7b7a7ea86c9d6477465c61aead42e974e1b938a 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf17.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf17.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7     7    -  8 -…Hello, world!")   8 +…ello, world!"  -       9 +…ontent)  -  9    10    \ No newline at end of file +  7  …   7  …  +  8 -…Hello, world!")   8 +…ello, world!"  +       9 +…ontent)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf18.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf18.golden index 16fecd3ea6aac8f92def3b3602cac2ff7c5879f9..715237891b424eb91814b91a287b17d063a1d2b8 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf18.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf18.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7     7    -  8 -…ello, world!")   8 +…llo, world!"  -       9 +…ntent)  -  9    10    \ No newline at end of file +  7  …   7  …  +  8 -…ello, world!")   8 +…llo, world!"  +       9 +…ntent)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf19.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf19.golden index 7c4606472de514d41cada9befc971bf630a2ad2e..6fa5925e13d0f617d23c8f62e692bbef68969dd2 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf19.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf19.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7     7    -  8 -…llo, world!")   8 +…lo, world!"  -       9 +…tent)  -  9    10    \ No newline at end of file +  7  …   7  …  +  8 -…llo, world!")   8 +…lo, world!"  +       9 +…tent)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf20.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf20.golden index acfd59dc2b5fa8574ab2d0b2ce33bba33ab9f452..c0bf9235426e010557385870a5dd95e74bffb6b7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf20.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Split/XOffsetOf20.golden @@ -1,7 +1,7 @@   …  @@ -5,5 +5,6 @@    …    -  5     5    +  5  …   5  …    6     6    -  7     7    -  8 -…lo, world!")   8 +…o, world!"  -       9 +…ent)  -  9    10    \ No newline at end of file +  7  …   7  …  +  8 -…lo, world!")   8 +…o, world!"  +       9 +…ent)  +  9  …  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf00.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf00.golden index dd633a6f596ef2a1654430639e0547088daedf41..94b2873d06832d68d902b591c3e8ed07960d165f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf00.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf00.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5  )  +  5   5  )    6   6    -  7   7  func main() {  -  8    -  fmt.Println("Hello, world!")  -     8 +  content := "Hello, world!"  -     9 +  fmt.Println(content)  -  9  10  }  \ No newline at end of file +  7   7  func main() {  +  8    -  fmt.Println("Hello, world!")  +     8 +  content := "Hello, world!"  +     9 +  fmt.Println(content)  +  9  10  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf01.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf01.golden index 8fa9bb8163b5b0bd1905d17dd39eca2414da2970..c9cf2ba5c67d9a207c92d303d464007dde1befb4 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf01.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf01.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …unc main() {  -  8    -… fmt.Println("Hello, world!")  -     8 +… content := "Hello, world!"  -     9 +… fmt.Println(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …unc main() {  +  8    -… fmt.Println("Hello, world!")  +     8 +… content := "Hello, world!"  +     9 +… fmt.Println(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf02.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf02.golden index b22c0ff36e32ed710aed00453a055d93344e4571..83de454cb48931a7515d520410cfd3c834e3c1f7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf02.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf02.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …nc main() {  -  8    -… fmt.Println("Hello, world!")  -     8 +… content := "Hello, world!"  -     9 +… fmt.Println(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …nc main() {  +  8    -… fmt.Println("Hello, world!")  +     8 +… content := "Hello, world!"  +     9 +… fmt.Println(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf03.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf03.golden index 3195a4dcb8b31e848b73d8b96f47d086fa0f8c7c..953b5d6e18c97bfab677573107546b9c406714d9 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf03.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf03.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …c main() {  -  8    -… fmt.Println("Hello, world!")  -     8 +… content := "Hello, world!"  -     9 +… fmt.Println(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …c main() {  +  8    -… fmt.Println("Hello, world!")  +     8 +… content := "Hello, world!"  +     9 +… fmt.Println(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf04.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf04.golden index ab30137b9c3994b82ea9e8f0c7dfd032d9198a66..30ef912446ba3f5d31a86199f77319a756078f91 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf04.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf04.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  … main() {  -  8    -…fmt.Println("Hello, world!")  -     8 +…content := "Hello, world!"  -     9 +…fmt.Println(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  … main() {  +  8    -…fmt.Println("Hello, world!")  +     8 +…content := "Hello, world!"  +     9 +…fmt.Println(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf05.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf05.golden index e7482736d73ea79e49b03cf33fed35d81283444c..e3068f96ee77bb62ddf13203d6d90c0689f80428 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf05.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf05.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …main() {  -  8    -…mt.Println("Hello, world!")  -     8 +…ontent := "Hello, world!"  -     9 +…mt.Println(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …main() {  +  8    -…mt.Println("Hello, world!")  +     8 +…ontent := "Hello, world!"  +     9 +…mt.Println(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf06.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf06.golden index 6b17b7def25d0a80c75a12965a30de66ffa08801..2112d73c61e72d0d027815ec85a54e9f60ca3358 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf06.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf06.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …ain() {  -  8    -…t.Println("Hello, world!")  -     8 +…ntent := "Hello, world!"  -     9 +…t.Println(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …ain() {  +  8    -…t.Println("Hello, world!")  +     8 +…ntent := "Hello, world!"  +     9 +…t.Println(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf07.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf07.golden index a5bc5b1b905e1b347365817ffa00ebc6bc98a8b1..54b71be135d454289d77e7a02657d1555b8ecd33 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf07.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf07.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …in() {  -  8    -….Println("Hello, world!")  -     8 +…tent := "Hello, world!"  -     9 +….Println(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …in() {  +  8    -….Println("Hello, world!")  +     8 +…tent := "Hello, world!"  +     9 +….Println(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf08.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf08.golden index a042c5c8633fc3b49374bc13e2d0f0ee3ebb6860..722115cc24309d4cf633ea5a6e566073047f30d0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf08.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf08.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …n() {  -  8    -…Println("Hello, world!")  -     8 +…ent := "Hello, world!"  -     9 +…Println(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …n() {  +  8    -…Println("Hello, world!")  +     8 +…ent := "Hello, world!"  +     9 +…Println(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf09.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf09.golden index 9d1284213fa2376e76fd9305c9e8bede06e9d37b..5f7bdbdcdd5be4cd11a389c0c783a78183b7bdf8 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf09.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf09.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …() {  -  8    -…rintln("Hello, world!")  -     8 +…nt := "Hello, world!"  -     9 +…rintln(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …() {  +  8    -…rintln("Hello, world!")  +     8 +…nt := "Hello, world!"  +     9 +…rintln(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf10.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf10.golden index 73a2a7a578547ecd1f4a1452ff0ae8fffaab4f16..45559be79cdb9ededcc648e270de7cd35e7d2568 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf10.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf10.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …) {  -  8    -…intln("Hello, world!")  -     8 +…t := "Hello, world!"  -     9 +…intln(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …) {  +  8    -…intln("Hello, world!")  +     8 +…t := "Hello, world!"  +     9 +…intln(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf11.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf11.golden index f1a7b6d483266f1e507dff3e4314fad5d7b561b4..e43d883ca53c33655ef3cba3fcfb8c198f6ba08b 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf11.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf11.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  … {  -  8    -…ntln("Hello, world!")  -     8 +… := "Hello, world!"  -     9 +…ntln(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  … {  +  8    -…ntln("Hello, world!")  +     8 +… := "Hello, world!"  +     9 +…ntln(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf12.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf12.golden index 1981f4bf1ca064474854b672c8efe8ef9441e560..f869ba9a4296fea7bc075dee39d803bfb593571f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf12.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf12.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7  …{  -  8    -…tln("Hello, world!")  -     8 +…:= "Hello, world!"  -     9 +…tln(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …{  +  8    -…tln("Hello, world!")  +     8 +…:= "Hello, world!"  +     9 +…tln(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf13.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf13.golden index a0c0fb30c50a3575805d9166da8a4cdd37674d1e..0c6ceea7ffb1bc8538ecfa791d93ddafbda184ab 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf13.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf13.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7    -  8    -…ln("Hello, world!")  -     8 +…= "Hello, world!"  -     9 +…ln(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …  +  8    -…ln("Hello, world!")  +     8 +…= "Hello, world!"  +     9 +…ln(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf14.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf14.golden index 47c5ccc7be998a34088c881bf316b2b499252a05..e5189e842557d9fdb3c1bbcb64bcb88022b5e3fb 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf14.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf14.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7    -  8    -…n("Hello, world!")  -     8 +… "Hello, world!"  -     9 +…n(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …  +  8    -…n("Hello, world!")  +     8 +… "Hello, world!"  +     9 +…n(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf15.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf15.golden index 3e7787d77ad14a1ff828f3e604ea79e22c1f0b8d..5ae21ff9d9614a3a938886f54621c38d479f6aaf 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf15.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf15.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7    -  8    -…("Hello, world!")  -     8 +…"Hello, world!"  -     9 +…(content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …  +  8    -…("Hello, world!")  +     8 +…"Hello, world!"  +     9 +…(content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf16.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf16.golden index 5fe0d8d0ef38693f80b8a517f5b28ed11a3ef32b..0fada9a25ff6e1292855cecb452b84ae446214ca 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf16.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf16.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7    -  8    -…"Hello, world!")  -     8 +…Hello, world!"  -     9 +…content)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …  +  8    -…"Hello, world!")  +     8 +…Hello, world!"  +     9 +…content)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf17.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf17.golden index a1a21ab38ba64515558c64e62fe03e64d5051fc1..77edd36e83f048673a1a1962ff0839bbd291a2dc 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf17.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf17.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7    -  8    -…Hello, world!")  -     8 +…ello, world!"  -     9 +…ontent)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …  +  8    -…Hello, world!")  +     8 +…ello, world!"  +     9 +…ontent)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf18.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf18.golden index 2cfaef8115cd6ec460f44ea1c4bd7cd1e8da6cdb..84a830655e2f83046e03421608ce2f767653e28f 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf18.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf18.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7    -  8    -…ello, world!")  -     8 +…llo, world!"  -     9 +…ntent)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …  +  8    -…ello, world!")  +     8 +…llo, world!"  +     9 +…ntent)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf19.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf19.golden index c6496c19b7417efa7763783ba7b182dacc9db6b0..9fb8b3b88efda9d50ad6cde9fe1d57305dd7fea6 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf19.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf19.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7    -  8    -…llo, world!")  -     8 +…lo, world!"  -     9 +…tent)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …  +  8    -…llo, world!")  +     8 +…lo, world!"  +     9 +…tent)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf20.golden b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf20.golden index b2dbd15fa8d3222f7dab9612b2317d3eaf052676..410d365f438ae62a002ef06b8e9fc2867545119c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf20.golden +++ b/internal/exp/diffview/testdata/TestDiffViewXOffset/Unified/XOffsetOf20.golden @@ -1,8 +1,8 @@   …   …  @@ -5,5 +5,6 @@   -  5   5    -  6   6    -  7   7    -  8    -…lo, world!")  -     8 +…o, world!"  -     9 +…ent)  -  9  10    \ No newline at end of file +  5   5  …  +  6   6  …  +  7   7  …  +  8    -…lo, world!")  +     8 +…o, world!"  +     9 +…ent)  +  9  10  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf00.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf00.golden index 6515d553ee9c3077bcf503e96fc6fbaad662bfd4..8d4a293fdd17ce5cbd8d709656573105a8cc7b09 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf00.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf00.golden @@ -1,5 +1,5 @@   …  @@ -2,6 +2,7 @@    …      2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf01.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf01.golden index 922ebc16416c1ff5ac7c36c818e707b46951e830..59b706f531489a560427504d00b4ed513a2f0429 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf01.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf01.golden @@ -1,5 +1,5 @@   2     2    -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf02.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf02.golden index 3c757b4a947d64e87fffc4dd040a665f8b56b506..a3e47b440f42bcadf6644a9ce09b4a3eced04193 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf02.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf02.golden @@ -1,5 +1,5 @@ -  3  import (   3  import (  -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  3  import (   3  import (  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf03.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf03.golden index 801f1b0bcdeb2b431316fefd3d1dc17eeda3ca52..823ceecf70c4ba985ab52af71e5d73b502e486ef 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf03.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf03.golden @@ -1,5 +1,5 @@ -  4  "fmt"   4  "fmt"  -       5 +  "strings"  -  5  )   6  )  +  4   "fmt"   4   "fmt"  +       5 +  "strings"  +  5  )   6  )    6     7      …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf04.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf04.golden index 2fb641655367a1d8fc751bbd0444a2d4ea7d11fe..51cc05362f49e9733efb56c02af96d584ed3b507 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf04.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf04.golden @@ -1,5 +1,5 @@ -       5 +  "strings"  -  5  )   6  )  +       5 +  "strings"  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf05.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf05.golden index 928c63623f5fd88e0ed34dc03fc90e6404ac4390..f8052af3a03a3e0d71c7e6914ae61e0cfe1cd208 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf05.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf05.golden @@ -1,5 +1,5 @@ -  5  )   6  )  +  5  )   6  )    6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …      …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf06.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf06.golden index 134ff01120a7bd4a2f80c1e65cfb174b7852bca8..00209b6b75b82c568e0f04349dd366a8c303b9e0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf06.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf06.golden @@ -1,5 +1,5 @@   6     7    -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf07.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf07.golden index 51843c42adc8774acf09a79cb235806324aea57e..49f92c490c17a8d125f1a7ca6854573e72ef3e65 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf07.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf07.golden @@ -1,5 +1,5 @@ -  7  func main() {   8  func main() {  +  7  func main() {   8  func main() {    …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11      …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf08.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf08.golden index d34bf595e33b47b491d0f857aeb6b81390a2e5bf..6f01089b12f29dff3c4a31bff325a543dc660355 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf08.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf08.golden @@ -1,5 +1,5 @@   …  @@ -9,5 +10,6 @@    …    -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  + 11  func getContent() string {  12  func getContent() string {    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf09.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf09.golden index 3706e309d70f9d5f205759fa5cedddb3058340c2..d368d1e85520195ead3015f57012ffefa0502d0d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf09.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf09.golden @@ -1,5 +1,5 @@ -  9  }  10  }  +  9  }  10  }   10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")    …  …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf10.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf10.golden index 5fd504aac99cb59bf8e2bc652e0dfffcd0e48ef2..09c4fa2b1b7eb1941caf79650cd494e9b56727d0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf10.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf10.golden @@ -1,5 +1,5 @@  10    11    - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  \ No newline at end of file + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf11.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf11.golden index 6d36f26029566dc85857299fd6054f1b8a338d1e..fca02b528feae2e2620f53d77bdbdc55e06096f0 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf11.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf11.golden @@ -1,5 +1,5 @@ - 11  func getContent() string {  12  func getContent() string {  - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  + 11  func getContent() string {  12  func getContent() string {  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }             \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf12.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf12.golden index 43fb8d355221bd73fee2b27cd3b481eb6094c150..5e347b97b1af201404fc830d47501dac3d6b8b36 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf12.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf12.golden @@ -1,5 +1,5 @@ - 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  -      14 +  return content  - 13  }  15  }  + 12 -  return "Hello, world!"  13 +  content := strings.ToUpper("Hello, World!")  +      14 +  return content  + 13  }  15  }                        \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf13.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf13.golden index 8bef8d4e6a2713175f0d6242ef99a78fa5b195bc..1496bd70374c1879a7b5a628ab923124242508c1 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf13.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf13.golden @@ -1,5 +1,5 @@ -      14 +  return content  - 13  }  15  }  +      14 +  return content  + 13  }  15  }                                   \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf14.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf14.golden index eed5712fe427c783f84ebef0b16322459e3de751..80b0d239540b60cb3e84a3323a8085b86ad428fa 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf14.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Split/YOffsetOf14.golden @@ -1,4 +1,4 @@ - 13  }  15  }  + 13  }  15  }                                   diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf00.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf00.golden index f73f2e5107400bb11415c48d3b8446009f22373d..e11e6df667cfa9dc3d909f30fef8895c16dc85c2 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf00.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf00.golden @@ -1,5 +1,5 @@   …   …  @@ -2,6 +2,7 @@     2   2    -  3   3  import (  -  4   4  "fmt"  +  3   3  import (  +  4   4   "fmt"    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf01.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf01.golden index a2da7f190863608734fbf3f449f24b3fa0b65cfc..52c1ff0ee9ddec7f746590d4a5efd7630eb97fd4 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf01.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf01.golden @@ -1,5 +1,5 @@   2   2    -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf02.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf02.golden index 79e537e2db8bfe77db540fea4473c4cc6f83b407..0d3ef94eccf5119a182afaecfdf5ad85880d3271 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf02.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf02.golden @@ -1,5 +1,5 @@ -  3   3  import (  -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  3   3  import (  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf03.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf03.golden index 53f8513a024887efe60ac3fb105eeab7647400aa..37d7ae5851327dd0d05ecb6cfc8d1dcc447c0be7 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf03.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf03.golden @@ -1,5 +1,5 @@ -  4   4  "fmt"  -     5 +  "strings"  -  5   6  )  +  4   4   "fmt"  +     5 +  "strings"  +  5   6  )    6   7      …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf04.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf04.golden index 2d4fd565311ef7a06e79aba83c7de7fe869479e5..cdc84e4407a0ac070af67944cbf2b470182a865d 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf04.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf04.golden @@ -1,5 +1,5 @@ -     5 +  "strings"  -  5   6  )  +     5 +  "strings"  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf05.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf05.golden index 0f5336993d91f4b736e06250efae27169cd105b4..7d36fccbe412a8d49e3c1bc78ae91d2f5433e4de 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf05.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf05.golden @@ -1,5 +1,5 @@ -  5   6  )  +  5   6  )    6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@     …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf06.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf06.golden index 4a58338c54b1770a14a806eca1fe2f53a425c50f..32c230ed26134c7427738a89829c8c511ea97922 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf06.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf06.golden @@ -1,5 +1,5 @@   6   7    -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf07.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf07.golden index 3e212731a61ba73315f177af7c07bafdf3878dbe..95f4c23477af7c7b87731b4170b96ce3bf94e755 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf07.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf07.golden @@ -1,5 +1,5 @@ -  7   8  func main() {  +  7   8  func main() {    …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11      …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf08.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf08.golden index afc8217aa8e375c16880a43ed5b336f91d156dc6..bf5e674b322acebb23134ff841fbbbfa27eeb752 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf08.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf08.golden @@ -1,5 +1,5 @@   …   …  @@ -9,5 +10,6 @@   -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  + 11  12  func getContent() string {    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf09.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf09.golden index f6ed57fa6d22a57330216a657572604fd1afca89..ad0bfca4be7b761b73d833849de6b0c369d92586 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf09.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf09.golden @@ -1,5 +1,5 @@ -  9  10  }  +  9  10  }   10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  + 11  12  func getContent() string {  + 12    -  return "Hello, world!"    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf10.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf10.golden index 9703601b959a88c999b6d54320bf339eeab53c1d..5998ba6ec7df46f91fe969858c19559fe873c330 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf10.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf10.golden @@ -1,5 +1,5 @@  10  11    - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")    …   …  …  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf11.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf11.golden index 2d0d5dc5dcf0d55cc78f02ff69b26c0b7a90584e..5f686c57c49ca7f7db94c766fff568f55725fa36 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf11.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf11.golden @@ -1,5 +1,5 @@ - 11  12  func getContent() string {  - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  \ No newline at end of file + 11  12  func getContent() string {  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }  \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf12.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf12.golden index 9ade24d5f1d0e81cb7e86c0c96998297f9412c32..1d8d95395c0e5900b270bb4d6f03ddef56f9bbe3 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf12.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf12.golden @@ -1,5 +1,5 @@ - 12    -  return "Hello, world!"  -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  + 12    -  return "Hello, world!"  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }           \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf13.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf13.golden index ac8d340dd7c0dc2433d65c568c7537fea9aafe85..469accfc86b39051e1f0d22944328f5ae0ddb911 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf13.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf13.golden @@ -1,5 +1,5 @@ -    13 +  content := strings.ToUpper("Hello, World!")  -    14 +  return content  - 13  15  }  +    13 +  content := strings.ToUpper("Hello, World!")  +    14 +  return content  + 13  15  }                    \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf14.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf14.golden index 17bffdd193c6e30fec1b9de039f3268bb0c869cf..547e576181a8e1abe5d24f3fce8f5dce2988bb3c 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf14.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf14.golden @@ -1,5 +1,5 @@ -    14 +  return content  - 13  15  }  +    14 +  return content  + 13  15  }                             \ No newline at end of file diff --git a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf15.golden b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf15.golden index b10490ae372c833632bc415259ccfe9f0c5b8075..005a5ea98096a1a703fb31ccd9b6e94ee0fe874a 100644 --- a/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf15.golden +++ b/internal/exp/diffview/testdata/TestDiffViewYOffset/Unified/YOffsetOf15.golden @@ -1,4 +1,4 @@ - 13  15  }  + 13  15  }