Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 109423 - app-editors/vim-core: highlighting wrong for '#' in a case-switch
Summary: app-editors/vim-core: highlighting wrong for '#' in a case-switch
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High minor (vote)
Assignee: Vim Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-16 03:11 UTC by Toralf Förster
Modified: 2005-12-15 12:05 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.