| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
|
|
|
|
|
|
| |
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Also remove use of HAVE_STDARG_H.
|
|
|
|
|
| |
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
|
|
|
|
|
| |
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
|
|
|
|
|
| |
Problem: The channel feature does not work in the MS-Windows console.
Solution: Add win32 console support. (Yasuhiro Matsumoto)
|
|
|
|
|
| |
Problem: Compiler warning for not using return value of fwrite().
Solution: Return OK/FAIL. (Charles Campbell)
|
|
|
|
|
| |
Problem: Can't build the channel feature on MS-Windows.
Solution: Add #ifdef HAVE_POLL.
|
|
|
|
|
|
| |
Problem: Can't build with FEAT_EVAL but without FEAT_MBYTE. (John
Marriott)
Solution: Add #ifdef for FEAT_MBYTE.
|
| |
|
|
|
|
|
|
| |
Problem: The channel feature isn't working yet.
Solution: Add the connect(), disconnect(), sendexpr() and sendraw()
functions. Add initial documentation. Add a demo server.
|
|
|
|
|
| |
Problem: On OSX the default flag for dlopen() is different.
Solution: Add RTLD_LOCAL in the configure check. (sv99, closes #604)
|
|
|
|
|
| |
Problem: Using another language on MS-Windows does not work. (Yongwei Wu)
Solution: Undo the change to try loading libintl-8.dll first.
|
|
|
|
|
| |
Problem: Using older JSON standard.
Solution: Update the link. Adjust the text a bit.
|
|
|
|
|
|
| |
Problem: MS-Windows channel code only supports one channel. Doesn't build
without netbeans support.
Solution: Get the channel index from the socket in the message. Closes #600.
|
|
|
|
|
| |
Problem: Error messages for security context are hard to translate.
Solution: Use one string with %s. (Ken Takata)
|
|
|
|
|
| |
Problem: Can't build with TCL on some systems.
Solution: Rename the channel_ functions.
|
|
|
|
|
| |
Problem: MS-Windows build is still broken.
Solution: Change nbsock to ch_fd.
|
|
|
|
|
| |
Problem: MS-Windows build is broken.
Solution: Remove init in wrong place.
|
|
|
|
|
| |
Problem: Still socket code intertwined with netbeans.
Solution: Move code from netbeans.c to channel.c
|
|
|
|
|
| |
Problem: free_tv() can't handle special variables. (Damien)
Solution: Add the variable type.
|
| |
|
|
|
|
|
| |
Problem: Crash with invalid argument to glob2regpat().
Solution: Check for NULL. (Justin M. Keyes, closes #596) Add a test.
|
|
|
|
|
| |
Problem: test_writefile and test_viml do not delete the tempfile.
Solution: Delete the tempfile. (Charles Cooper) Add DeleteTheScript().
|
|
|
|
|
| |
Problem: empty() doesn't work for the new special variables.
Solution: Make empty() work. (Damien)
|
|
|
|
|
| |
Problem: The +channel feature is not in :version output. (Tony Mechelynck)
Solution: Add the feature string.
|
|
|
|
|
| |
Problem: Missing change to proto file.
Solution: Update the proto file. (Charles Cooper)
|
|
|
|
|
| |
Problem: Can't build with Mingw and Cygwin.
Solution: Remove extra "endif". (Christian J. Robinson)
|
|
|
|
|
| |
Problem: Netbeans contains dead code insde #ifdef.
Solution: Remove the dead code.
|
|
|
|
|
| |
Problem: No test for new behavior of v:true et al.
Solution: Add a test.
|
|
|
|
|
| |
Problem: Configure is overly positive.
Solution: Insert "test".
|
|
|
|
|
| |
Problem: Makefile dependencies are outdated.
Solution: Run "make depend". Add GTK resource dependencies.
|
|
|
|
|
| |
Problem: Missing changes in src/Makefile, Filelist.
Solution: Add the missing changes.
|
|
|
|
|
|
| |
Problem: The socket I/O is intertwined with the netbeans code.
Solution: Start refactoring the netbeans communication to split off the
socket I/O. Add the +channel feature.
|
| |
|
|
|
|
|
|
| |
Problem: This doesn't give the right result: eval(string(v:true)). (Nikolay
Pavlov)
Solution: Make the string "v:true" instead of "true".
|
|
|
|
|
| |
Problem: No tests for "is" and "isnot" with the new variables.
Solution: Add tests.
|
|
|
|
|
|
| |
Problem: Can't encode a Funcref into JSON. jsonencode() doesn't handle the
same list or dict twice properly. (Nikolay Pavlov)
Solution: Give an error. Reset copyID when the list or dict is finished.
|
|
|
|
|
| |
Problem: When defining DYNAMIC_ICONV_DLL in the makefile, the build fails.
Solution: Add #ifdef's. (Taro Muraoka) Try the newer version first.
|
|
|
|
|
|
| |
Problem: No tests for comparing special variables. Error in jsondecode()
not reported. test_json does not work Japanse system.
Solution: Set scriptencoding. (Ken Takata) Add a few more tests. Add error.
|
|
|
|
|
|
| |
Problem: Expressions "0 + v:true" and "'' . v:true" cause an error.
Solution: Return something sensible when using a special variable as a
number or as a string. (suggested by Damien)
|
|
|
|
|
| |
Problem: Missing error number in MzScheme. (Dominique Pelle)
Solution: Add a proper error number.
|
|
|
|
|
|
| |
Problem: ":argadd" without argument is supposed to add the current buffer
name to the arglist.
Solution: Make it work as documented. (Coot, closes #577)
|
|
|
|
|
| |
Problem: No error for jsondecode('"').
Solution: Give an error message for missing double quote.
|
|
|
|
|
| |
Problem: Automatically generated function prototypes use __ARGS.
Solution: Remove __ARGS from osdef.sh.
|
|
|
|
|
| |
Problem: Still using __ARGS().
Solution: Remove __ARGS() from eval.c
|
|
|
|
|
| |
Problem: type() does not work for v:true, v:none, etc.
Solution: Add new type numbers.
|
|
|
|
|
| |
Problem: Coverity warns for NULL pointer and ignoring return value.
Solution: Check for NULL pointer. When dict_add() returns FAIL free the item.
|
|
|
|
|
| |
Problem: Build with normal features fails.
Solution: Always deinfe dict_lookup().
|
|
|
|
|
|
| |
Problem: No support for JSON.
Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true,
v:null and v:none.
|
|
|
|
|
|
| |
Problem: Autocommands triggered by quickfix cannot always get the current
title value.
Solution: Call qf_fill_buffer() later. (Christian Brabandt)
|