Mercurial > vim
view src/proto/json.pro @ 15099:39728d503e47 v8.1.0560
patch 8.1.0560: cannot use address type "other" with with user command
commit https://github.com/vim/vim/commit/51a7454cd2c34ee459f104e45768eab3817c099e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Dec 2 18:21:49 2018 +0100
patch 8.1.0560: cannot use address type "other" with with user command
Problem: Cannot use address type "other" with with user command.
Solution: Add "other" to the list. (Daniel Hahler, closes https://github.com/vim/vim/issues/3655) Also
reject "%" for commands with "other". Add some more tests.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 02 Dec 2018 18:30:07 +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 : */