Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: koron/vim

Tags

v7.4.1161

Toggle v7.4.1161's commit message
patch 7.4.1161

Problem:    ":argadd" without argument is supposed to add the current buffer
            name to the arglist.
Solution:   Make it work as documented. (Coot, closes vim#577)

v7.4.1160

Toggle v7.4.1160's commit message
patch 7.4.1160

Problem:    No error for jsondecode('"').
Solution:   Give an error message for missing double quote.

v7.4.1159

Toggle v7.4.1159's commit message
patch 7.4.1159

Problem:    Automatically generated function prototypes use __ARGS.
Solution:   Remove __ARGS from osdef.sh.

v7.4.1158

Toggle v7.4.1158's commit message
patch 7.4.1158

Problem:    Still using __ARGS().
Solution:   Remove __ARGS() from eval.c

v7.4.1157

Toggle v7.4.1157's commit message
patch 7.4.1157

Problem:    type() does not work for v:true, v:none, etc.
Solution:   Add new type numbers.

v7.4.1156

Toggle v7.4.1156's commit message
patch 7.4.1156

Problem:    Coverity warns for NULL pointer and ignoring return value.
Solution:   Check for NULL pointer. When dict_add() returns FAIL free the item.

v7.4.1155

Toggle v7.4.1155's commit message
patch 7.4.1155

Problem:    Build with normal features fails.
Solution:   Always deinfe dict_lookup().

v7.4.1154

Toggle v7.4.1154's commit message
patch 7.4.1154

Problem:    No support for JSON.
Solution:   Add jsonencode() and jsondecode().  Also add v:false, v:true,
            v:null and v:none.

v7.4.1153

Toggle v7.4.1153's commit message
patch 7.4.1153

Problem:    Autocommands triggered by quickfix cannot always get the current
            title value.
Solution:   Call qf_fill_buffer() later. (Christian Brabandt)

v7.4.1152

Toggle v7.4.1152's commit message
patch 7.4.1152

Problem:    Langmap test fails with normal build.
Solution:   Check for +langmap feature.