Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 109423

Summary: app-editors/vim-core: highlighting wrong for '#' in a case-switch
Product: Gentoo Linux Reporter: Toralf Förster <toralf>
Component: Current packagesAssignee: Vim Maintainers <vim>
Status: RESOLVED UPSTREAM    
Severity: minor    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Toralf Förster gentoo-dev 2005-10-16 03:11:35 UTC
In the following script the char '#' in the line switching to "def" is not
highlighted, whereas in the line switching to "ghi" all seems to be ok.

#!/bin/sh

case $1 in
        "abc")  do_something
                ;;

        #"def") do_something_else
        #       ;;

#       "ghi")  do_something_else
#               ;;

        "*")    do_print_an_error
                ;;
esac

exit 0



Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Ciaran McCreesh 2005-12-15 12:05:46 UTC
Could you send this upstream please? I'm trying to avoid patching syntax things.