diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-12-19 17:10:34 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-12-21 20:36:00 -0800 |
commit | 62e365f5776cfe8e460fdd29a1d7fa89a5c9c0bc (patch) | |
tree | 49f73907183bc10016a6ca52fab8fa6b338f32a2 /src/clint.py | |
parent | 481da1ce4060fd3045ac6553cef69f4fa4f9829d (diff) | |
download | rneovim-62e365f5776cfe8e460fdd29a1d7fa89a5c9c0bc.tar.gz rneovim-62e365f5776cfe8e460fdd29a1d7fa89a5c9c0bc.tar.bz2 rneovim-62e365f5776cfe8e460fdd29a1d7fa89a5c9c0bc.zip |
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": { ... },
...
},
...
]
Diffstat (limited to 'src/clint.py')
0 files changed, 0 insertions, 0 deletions