C to VimDict
Convert a C data structure to a Vimscript dictionary.
{ "Return", '\n', },
{ "ampersand", '&', },
{ "apostrophe", '\'', },
{ "asciicircum", '^', },
{ "asciitilde", '~', },
{ "asterisk", '*', },
{ "at", '@', },
{ "backslash", '\\', },
{
\ "\n" : 'Return',
\ "&" : 'ampersand',
\ "\'" : 'apostrophe',
\ "^" : 'asciicircum',
\ "~" : 'asciitilde',
\ "*" : 'asterisk',
\ "@" : 'at',
\ "\\" : 'backslash',
\}