Closed chaoren closed 3 years ago
Fixes https://github.com/bazelbuild/vim-ft-bzl/issues/1.
Before this change:
cc_binary( name = "hello-world", srcs = ["hello-world.cc"], deps = [ ":hello-time", "//lib:hello-greet", ], )
Indent is shiftwidth() * 2 and the closing )/] don't match the opening (/[.
shiftwidth() * 2
)
]
(
[
After this change:
Changes look reasonable, thanks! Merged.
Fixes https://github.com/bazelbuild/vim-ft-bzl/issues/1.
Before this change:
Indent is
shiftwidth() * 2
and the closing)
/]
don't match the opening(
/[
.After this change: