hinrik / perl6-mode

Emacs major mode for Perl 6
GNU General Public License v3.0
36 stars 4 forks source link

Add support for more unicode quotes ’’ ’‘ ‚’ ‚‘ ”” ”“ „” „“ #12

Open AlexDaniel opened 8 years ago

AlexDaniel commented 8 years ago

See also #2

say 「hello」; # OK

say ‘hello’; # OK
say ’hello’; # NOT OK
say ’hello‘; # NOT OK
say ‚hello’; # NOT OK
say ‚hello‘; # NOT OK

say “hello”; # OK
say ”hello”; # NOT OK
say ”hello“; # NOT OK
say „hello”; # NOT OK
say „hello“; # NOT OK
AlexDaniel commented 8 years ago

Perhaps worth noting:

say „foo „hello“ bar“;     # OUTPUT: foo „hello“ bar