Bug#698789: vim-runtime: Make syntax does not highlight after blank lines and make conditionals

Guillem Jover guillem at debian.org
Wed Jan 23 17:31:25 UTC 2013


Package: vim-runtime
Version: 2:7.3.547-6
Severity: minor

Hi!

The current make syntax support does not highlight correctly the
target commands after inserting blank lines or make conditionals in
the target context. Attached is an example file which should show both
cases. All echo commands should be highligthed but the later ones do
not.

Thanks,
Guillem
-------------- next part --------------
variable = first

target: target-a target-b

target-a:
	echo command-a-1
# empty command follows
	
	# shell comment
	echo command-a-2
# blank line follows

	echo command-a-3

variable = middle

target-b:
	echo command-b-1
ifeq ($(variable),last)
	echo command-b-cond
endif
	echo command-b-var $(variable)

variable = last


More information about the pkg-vim-maintainers mailing list