Mercurial > vim
view src/proto/json.pro @ 12783:afd8a4f36301 v8.0.1269
patch 8.0.1269: effect of autocommands on marks is not tested
commit https://github.com/vim/vim/commit/aace21581345aa51c09d809ab3744a943a71c879
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Nov 5 16:23:10 2017 +0100
patch 8.0.1269: effect of autocommands on marks is not tested
Problem: Effect of autocommands on marks is not tested.
Solution: Add a couple of tests. (James McCoy, closes https://github.com/vim/vim/issues/2271)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 05 Nov 2017 16:30:04 +0100 |
parents | 45ea5ebf3a98 |
children | dfd87ef822aa |
line wrap: on
line source
/* json.c */ char_u *json_encode(typval_T *val, int options); char_u *json_encode_nr_expr(int nr, typval_T *val, int options); int json_decode_all(js_read_T *reader, typval_T *res, int options); int json_decode(js_read_T *reader, typval_T *res, int options); int json_find_end(js_read_T *reader, int options); /* vim: set ft=c : */