Justin M. Keyes
62e365f577
gen_vimdoc.py: mpack: exclude deprecated functions
The `mpack` variable was a tuple, which manifests as an array in the
generated msgpack structure.
- Removes noise from the mpack data (deprecated functions are
deprecated).
- Eliminates 1 level of nesting.
BEFORE:
[
{
"buffer.c": [
{
"nvim__buf_stats": { ... },
...
},
{
"buffer_del_line": { ... },
...
},
],
...
}
]
AFTER:
[
{
"buffer.c": {
"nvim__buf_stats": { ... },
...
},
...
]
2019-12-21 20:36:00 -08:00
..
2018-11-12 12:36:40 -05:00
2019-07-29 22:14:23 +02:00
2017-06-29 20:25:51 -04:00
2014-06-02 11:04:18 -03:00
2019-07-29 22:14:23 +02:00
2019-12-21 20:36:00 -08:00
2019-05-18 20:38:19 +02:00
2018-12-08 01:16:58 +01:00
2019-01-04 06:03:47 +01:00
2016-02-01 09:09:08 +01:00
2019-05-18 22:01:14 +02:00
2019-10-27 11:58:28 +09:00
2014-06-02 11:04:04 -03:00
2019-07-12 11:36:19 +02:00
2019-09-15 23:08:40 -07:00
2019-11-05 17:34:21 -08:00
2019-07-29 22:14:23 +02:00
2018-12-28 23:52:03 +01:00
2019-11-02 04:54:59 +09:00
2019-10-16 15:44:38 +02:00
2017-12-27 12:30:55 +01:00
2019-01-09 10:40:02 +01:00