summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.956v7.4.956Bram Moolenaar2015-12-032-1/+3
| | | | | Problem: A few more file name extensions not recognized. Solution: Add .asciidoc, .bzl, .gradle, etc.
* patch 7.4.955v7.4.955Bram Moolenaar2015-12-032-1/+4
| | | | | Problem: Vim doesn't recognize .pl6 and .pod6 files. Solution: Recognize them as perl6 and pod6. (Mike Eve, closes #511)
* patch 7.4.954v7.4.954Bram Moolenaar2015-12-032-1/+4
| | | | | Problem: When using Lua there may be a crash. (issue #468) Solution: Avoid using an unitialized tv. (Yukihiro Nakadaira)
* patch 7.4.953v7.4.953Bram Moolenaar2015-12-032-1/+3
| | | | | | Problem: When a test script navigates to another buffer the .res file is created with the wrong name. Solution: Use the "testname" for the .res file. (Damien)
* patch 7.4.952v7.4.952Bram Moolenaar2015-12-0311-35/+27
| | | | | Problem: 'lispwords' is tested in the old way. Solution: Make a new style test for 'lispwords'.
* patch 7.4.951v7.4.951Bram Moolenaar2015-12-036-1/+52
| | | | | Problem: Sorting number strings does not work as expected. (Luc Hermitte) Solution: Add the 'N" argument to sort()
* patch 7.4.950v7.4.950Bram Moolenaar2015-12-032-0/+3
| | | | | Problem: v:errors is not initialized. Solution: Initialze it to an empty list. (Thinca)
* patch 7.4.949v7.4.949Bram Moolenaar2015-12-034-2/+54
| | | | | | Problem: When using 'colorcolumn' and there is a sign with a fullwidth character the highlighting is wrong. (Andrew Stewart) Solution: Only increment vcol when in the right state. (Christian Brabandt)
* patch 7.4.948v7.4.948Bram Moolenaar2015-12-033-0/+6
| | | | | Problem: Can't build when the insert_expand feature is disabled. Solution: Add #ifdefs. (Dan Pasanen, closes #499)
* patch 7.4.947v7.4.947Bram Moolenaar2015-12-012-1/+3
| | | | | | Problem: Test_listchars fails with MingW. (Michael Soyka) Solution: Add the test to the ones that need the fileformat fixed. (Christian Brabandt)
* patch 7.4.946v7.4.946Bram Moolenaar2015-12-012-53/+84
| | | | | Problem: Missing changes in source file. Solution: Include changes to the eval.c file.
* patch 7.4.945v7.4.945Bram Moolenaar2015-11-309-104/+87
| | | | | | | | Problem: New style testing is incomplete. Solution: Add the runtest script to the list of distributed files. Add the new functions to the function overview. Rename the functions to match Vim function style. Move undolevels testing into a new style test script.
* patch 7.4.944v7.4.944Bram Moolenaar2015-11-298-7/+294
| | | | | | | Problem: Writing tests for Vim script is hard. Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add the v:errors variable. Add the runtest script. Add a first new style test script.
* patch 7.4.943v7.4.943Bram Moolenaar2015-11-287-6/+15
| | | | | Problem: Tests are not run. Solution: Add test_writefile to makefiles. (Ken Takata)
* patch 7.4.942v7.4.942Bram Moolenaar2015-11-252-0/+3
| | | | | Problem: test_tagcase breaks for small builds. Solution: Bail out of the test early. (Hirohito Higashi)
* Update runtime files.Bram Moolenaar2015-11-2412-112/+165
|
* patch 7.4.941v7.4.941Bram Moolenaar2015-11-2420-24/+254
| | | | | Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson)
* patch 7.4.940v7.4.940Bram Moolenaar2015-11-242-13/+16
| | | | | | Problem: vt52 terminal codes are not correct. Solution: Move entries outside of #if. (Random) Adjustments based on documented codes.
* patch 7.4.939v7.4.939Bram Moolenaar2015-11-242-0/+5
| | | | | Problem: Memory leak when encountering a syntax error. Solution: Free the memory. (Dominique Pelle)
* patch 7.4.938v7.4.938Bram Moolenaar2015-11-243-11/+16
| | | | | Problem: X11 and GTK have moure mouse buttons than Vim supports. Solution: Recognize more mouse buttons. (Benoit Pierre, closes #498)
* patch 7.4.937v7.4.937Bram Moolenaar2015-11-242-1/+4
| | | | | | Problem: Segfault reading unitialized memory. Solution: Do not read match \z0, it does not exist. (Marius Gedminas, closes #497)
* patch 7.4.936v7.4.936Bram Moolenaar2015-11-223-0/+11
| | | | | | Problem: Crash when dragging with the mouse. Solution: Add safety check for NULL pointer. Check mouse position for valid value. (Hirohito Higashi)
* patch 7.4.935v7.4.935Bram Moolenaar2015-11-222-7/+9
| | | | | | Problem: test_utf8 fails on MS-Windows when executed with gvim. Solution: Use the insert flag on feedkeys() to put the string before the ":" that was already read when checking for available chars.
* patch 7.4.934v7.4.934Bram Moolenaar2015-11-212-0/+4
| | | | | Problem: Appveyor also builds on a tag push. Solution: Add a skip_tags line. (Kenichi Ito, closes #489)
* patch 7.4.933v7.4.933Bram Moolenaar2015-11-212-1/+3
| | | | | Problem: Crash when using longest completion match. Solution: Fix array index.
* patch 7.4.932v7.4.932Bram Moolenaar2015-11-212-3/+8
| | | | | Problem: test_utf8 has confusing dummy command. Solution: Use a real command instead of a colon.
* patch 7.4.931v7.4.931Bram Moolenaar2015-11-212-1/+3
| | | | | Problem: Test 94 fails on some systems. Solution: Set 'encoding' to utf-8.
* Update runtime files.Bram Moolenaar2015-11-198-42/+62
|
* patch 7.4.930v7.4.930Bram Moolenaar2015-11-192-3/+5
| | | | | Problem: MS-Windows: Most users appear not to like the window border. Solution: Remove WS_EX_CLIENTEDGE. (Ian Halliday)
* patch 7.4.929v7.4.929Bram Moolenaar2015-11-194-0/+29
| | | | | | Problem: "gv" after paste selects one character less if 'selection' is "exclusive". Solution: Increment the end position. (Christian Brabandt)
* patch 7.4.928v7.4.928Bram Moolenaar2015-11-192-2/+10
| | | | | | Problem: A clientserver message interrupts handling keys of a mapping. Solution: Have mch_inchar() send control back to WaitForChar when it is interrupted by server message. (James Kolb)
* patch 7.4.927v7.4.927Bram Moolenaar2015-11-192-4/+6
| | | | | Problem: Ruby crashes when there is a runtime error. Solution: Use ruby_options() instead of ruby_process_options(). (Damien)
* patch 7.4.926v7.4.926Bram Moolenaar2015-11-194-5/+47
| | | | | | | Problem: Completing the longest match doesn't work properly with multi-byte characters. Solution: When using multi-byte characters use another way to find the longest match. (Hirohito Higashi)
* patch 7.4.925v7.4.925Bram Moolenaar2015-11-196-5/+29
| | | | | | Problem: User may yank or put using the register being recorded in. Solution: Add the recording register in the message. (Christian Brabandt, closes #470)
* patch 7.4.924v7.4.924Bram Moolenaar2015-11-193-2/+4
| | | | | | Problem: DEVELOPER_DIR gets reset by configure. Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir argument. (Kazuki Sakamoto, closes #482)
* patch 7.4.923v7.4.923Bram Moolenaar2015-11-192-5/+7
| | | | | Problem: Prototypes not always generated. Solution: Change #if to OR with PROTO.
* Updated runtime files.Bram Moolenaar2015-11-1014-265/+317
|
* patch 7.4.922v7.4.922Bram Moolenaar2015-11-102-0/+3
| | | | | Problem: Leaking memory with ":helpt {dir-not-exists}". Solution: Free dirname. (Dominique Pelle)
* patch 7.4.921v7.4.921Bram Moolenaar2015-11-102-0/+3
| | | | | Problem: Missing proto file update. (Randall W. Morris) Solution: Add the missing line for mch_ishidden.
* patch 7.4.920v7.4.920Bram Moolenaar2015-11-102-0/+6
| | | | | Problem: The rubydll option is not in the options window. Solution: Add the rubydll option.
* patch 7.4.919v7.4.919Bram Moolenaar2015-11-102-1/+19
| | | | | Problem: The dll options are not in the options window. Solution: Add the dll options. And other fixes.
* patch 7.4.918v7.4.918Bram Moolenaar2015-11-104-4/+6
| | | | | Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
* patch 7.4.917v7.4.917Bram Moolenaar2015-11-102-1/+3
| | | | | Problem: Compiler warning for comparing signed and unsigned. Solution: Add a type cast.
* patch 7.4.916v7.4.916Bram Moolenaar2015-11-102-3/+2
| | | | | | Problem: When running out of memory while copying a dict memory may be freed twice. (ZyX) Solution: Do not call the garbage collector when running out of memory.
* patch 7.4.915v7.4.915Bram Moolenaar2015-11-104-3/+13
| | | | | | Problem: When removing from 'path' and then adding, a comma may go missing. (Malcolm Rowe) Solution: Fix the check for P_ONECOMMA. (closes #471)
* patch 7.4.914v7.4.914Bram Moolenaar2015-11-102-1/+3
| | | | | Problem: New compiler warning: logical-not-parentheses Solution: Silence the warning.
* patch 7.4.913v7.4.913Bram Moolenaar2015-11-108-32/+121
| | | | | Problem: No utf-8 support for the hangul input feature. Solution: Add utf-8 support. (Namsh)
* patch 7.4.912v7.4.912Bram Moolenaar2015-11-104-0/+29
| | | | | Problem: Wrong indenting for C++ constructor. Solution: Recognize ::. (Anhong)
* patch 7.4.911v7.4.911Bram Moolenaar2015-11-102-0/+4
| | | | | Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi) Solution: Define the options.
* patch 7.4.910v7.4.910Bram Moolenaar2015-11-102-4/+8
| | | | | Problem: Compiler complains about type punned pointer. Solution: Use another way to increment the ref count.