1
0
forked from aniani/vim

Commit Graph

  • e906c50207 patch 7.4.864 Problem: Tiny build fails. Solution: Put qf_ items inside #ifdef. v7.4.864 Bram Moolenaar 2015-09-09 21:10:39 +02:00
  • 43335ea394 patch 7.4.863 Problem: plines_nofill() used without the diff feature. Solution: Define PLINES_NOFILL(). v7.4.863 Bram Moolenaar 2015-09-09 20:59:37 +02:00
  • 5325b9bbae patch 7.4.862 Problem: Still problems with pango_shape_full() not available. Solution: Change AC_TRY_COMPILE to AC_TRY_LINK. v7.4.862 Bram Moolenaar 2015-09-09 20:27:02 +02:00
  • 12969c04fe Update documentation and syntax files. Bram Moolenaar 2015-09-08 23:36:10 +02:00
  • 3cbe0c01ad patch 7.4.861 Problem: pango_shape_full() is not always available. Solution: Add a configure check. v7.4.861 Bram Moolenaar 2015-09-08 20:00:22 +02:00
  • a122b5e98a patch 7.4.860 Problem: Filetype detection is outdated. Solution: Include all recent and not-so-recent changes. v7.4.860 Bram Moolenaar 2015-09-08 19:13:51 +02:00
  • d8986fd914 patch 7.4.859 Problem: Vim doesn't recognize all htmldjango files. Solution: Recognize a comment. (Daniel Hahler, PR #410) v7.4.859 Bram Moolenaar 2015-09-08 19:10:55 +02:00
  • aa23b37942 patch 7.4.858 Problem: It's a bit clumsy to execute a command on a list of matches. Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan Lakshmanan) v7.4.858 Bram Moolenaar 2015-09-08 18:46:31 +02:00
  • 4a4b821085 patch 7.4.857 Problem: Dragging the current tab with the mouse doesn't work properly. Solution: Take the current tabpage index into account. (Hirohito Higashi) v7.4.857 Bram Moolenaar 2015-09-08 17:50:41 +02:00
  • a09a2c5857 patch 7.4.856 Problem: "zt" still doesn't work well with filler lines. (Gary Johnson) Solution: Check for filler lines above the cursor. (Christian Brabandt) v7.4.856 Bram Moolenaar 2015-09-08 17:31:59 +02:00
  • 7e2ec008f5 patch 7.4.855 Problem: GTK: font glitches for combining characters Solution: Use pango_shape_full() instead of pango_shape(). (luchr, PR #393) v7.4.855 Bram Moolenaar 2015-09-08 16:31:06 +02:00
  • b58988b832 patch 7.4.854 Problem: Missing information about runtime files. Solution: Add section about runtime files. (Christian Brabandt) v7.4.854 Bram Moolenaar 2015-09-01 21:25:44 +02:00
  • cf619daa8e patch 7.4.853 Problem: "zt" in diff mode does not always work properly. (Gary Johnson) Solution: Don't count filler lines twice. (Christian Brabandt) v7.4.853 Bram Moolenaar 2015-09-01 20:53:24 +02:00
  • ac360bf2ca patch 7.4.852 Problem: On MS-Windows console Vim uses ANSI APIs for keyboard input and console output, it cannot input/output Unicode characters. Solution: Use Unicode APIs for console I/O. (Ken Takata, Yasuhiro Matsumoto) v7.4.852 Bram Moolenaar 2015-09-01 20:31:20 +02:00
  • 615942452e patch 7.4.851 Problem: Saving and restoring the console buffer does not work properly. Solution: Instead of ReadConsoleOutputA/WriteConsoleOutputA use CreateConsoleScreenBuffer and SetConsoleActiveScreenBuffer. (Ken Takata) v7.4.851 Bram Moolenaar 2015-09-01 20:23:37 +02:00
  • 544780248b patch 7.4.850 Problem: <Esc> does not show up. Solution: Use &gt; and &lt;. (Kazunobu Kuriyama) v7.4.850 Bram Moolenaar 2015-09-01 19:50:09 +02:00
  • 8b5f65a527 patch 7.4.849 Problem: Moving the cursor in Insert mode starts new undo sequence. Solution: Add CTRL-G U to keep the undo sequence for the following cursor movement command. (Christian Brabandt) v7.4.849 Bram Moolenaar 2015-09-01 19:26:12 +02:00
  • 5adfea1ac6 patch 7.4.848 Problem: CTRL-A on hex number in Visual block mode is incorrect. Solution: Account for the "0x". (Hirohito Higashi) v7.4.848 Bram Moolenaar 2015-09-01 18:51:39 +02:00
  • 8667d66ca9 patch 7.4.847 Problem: "vi)d" may leave a character behind. Solution: Skip over multi-byte character. (Christian Brabandt) v7.4.847 Bram Moolenaar 2015-09-01 18:27:49 +02:00
  • 6017f3799d patch 7.4.846 Problem: Some GitHub users don't know how to use issues. Solution: Add a file that explains the basics of contributing. v7.4.846 Bram Moolenaar 2015-09-01 17:50:48 +02:00
  • 5df1ed2de3 patch 7.4.845 Problem: Compiler warning for possible loss of data. Solution: Add a type cast. (Erich Ritz) v7.4.845 Bram Moolenaar 2015-09-01 16:25:34 +02:00
  • 37a8de17d4 patch 7.4.844 Problem: When '#' is in 'isident' the is# comparator doesn't work. Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto) v7.4.844 Bram Moolenaar 2015-09-01 16:05:00 +02:00
  • d43f0951bc patch 7.4.843 Problem: Still possible to go beyond the end of a string. Solution: Check for NUL also in second string. (Dominique Pelle) v7.4.843 Bram Moolenaar 2015-08-27 22:30:47 +02:00
  • cdf0442d00 patch 7.4.842 Problem: Sending too many messages to close the balloon. Solution: Only send a WM_CLOSE message. (Jurgen Kramer) v7.4.842 Bram Moolenaar 2015-08-27 22:25:10 +02:00
  • 5ea87a0496 patch 7.4.841 Problem: Can't compile without the multi-byte feature. (John Marriott) Solution: Add more #ifdef's. v7.4.841 Bram Moolenaar 2015-08-26 23:24:09 +02:00
  • 8e5f5b47c2 patch 7.4.840 Problem: Tooltip window stays open. Solution: Send a WM_CLOSE message. (Jurgen Kramer) v7.4.840 Bram Moolenaar 2015-08-26 23:12:38 +02:00
  • 6ed535dbc0 patch 7.4.839 Problem: Compiler warning on 64-bit system. Solution: Add cast to int. (Mike Williams) v7.4.839 Bram Moolenaar 2015-08-26 23:01:21 +02:00
  • 8060687905 patch 7.4.838 Problem: Can't compile without the crypt feature. (John Marriott) Solution: Add #ifdef. v7.4.838 Bram Moolenaar 2015-08-25 21:27:35 +02:00
  • 88774fdd23 Updated runtime files and Italian messages. Bram Moolenaar 2015-08-25 19:52:04 +02:00
  • 80ce282107 patch 7.4.837 Problem: Compiler warning with MSVC compiler when using +sniff. Solution: Use Sleep() instead of _sleep(). (Tux) v7.4.837 Bram Moolenaar 2015-08-25 19:49:50 +02:00
  • 0a38dd29d6 patch 7.4.836 Problem: Accessing unitinialized memory. Solution: Add missing calls to init_tv(). (Dominique Pelle) v7.4.836 Bram Moolenaar 2015-08-25 16:49:01 +02:00
  • f6470c288c patch 7.4.835 Problem: Comparing utf-8 sequences does not handle different byte sizes correctly. Solution: Get the byte size of each character. (Dominique Pelle) v7.4.835 Bram Moolenaar 2015-08-25 16:31:40 +02:00
  • 7e47d1ac6a patch 7.4.834 Problem: gettabvar() doesn't work after Vim start. (Szymon Wrozynski) Solution: Handle first window in tab still being NULL. (Christian Brabandt) v7.4.834 Bram Moolenaar 2015-08-25 16:19:05 +02:00
  • e68c25c677 patch 7.4.833 Problem: More side effects of ":set all&" are missing. (Björn Linse) Solution: Call didset_options() and add didset_options2() to collect more side effects to take care of. Still not everything... v7.4.833 Bram Moolenaar 2015-08-25 15:39:55 +02:00
  • be83b73ddb patch 7.4.832 Problem: $HOME in is expanded too early. Solution: Skip over when expanding environment names. v7.4.832 Bram Moolenaar 2015-08-25 14:21:19 +02:00
  • 3f188935ec patch 7.4.831 Problem: When expanding on the command line and encountering an error, the command is executed anyway. Solution: Bail out when an error is detected. v7.4.831 Bram Moolenaar 2015-08-25 13:57:04 +02:00
  • b341dda575 patch 7.4.830 Problem: Resetting 'encoding' when doing ":set all&" causes problems. (Bjorn Linse) Display is not updated. Solution: Do not reset 'encoding'. Do a full redraw. v7.4.830 Bram Moolenaar 2015-08-25 12:56:31 +02:00
  • 7fb7d34caf patch 7.4.829 Problem: Crash when clicking in beval balloon. (Travis Lebsock) Solution: Use PostMessage() instead of DestroyWindow(). (Raymond Ko, PR 298) v7.4.829 Bram Moolenaar 2015-08-25 12:21:32 +02:00
  • 670acbc70f patch 7.4.828 Problem: Crash when using "syn keyword x c". (Dominique Pelle) Solution: Initialize the keyword tabble. (Raymond Ko, PR 397) v7.4.828 Bram Moolenaar 2015-08-25 11:58:36 +02:00
  • 8cba8ba3e0 patch 7.4.827 Problem: Not all test targets are in the Makefile. Solution: Add the missing targets. v7.4.827 Bram Moolenaar 2015-08-18 13:48:54 +02:00
  • 3cfd5289ca patch 7.4.826 Problem: Compiler warnings and errors. Solution: Make it build properly without the multi-byte feature. v7.4.826 Bram Moolenaar 2015-08-13 23:28:43 +02:00
  • 1560d07045 patch 7.4.825 Problem: Invalid memory access for ":syn keyword x a[". Solution: Do not skip over the NUL. (Dominique Pelle) v7.4.825 Bram Moolenaar 2015-08-13 22:53:29 +02:00
  • 8e8b486727 patch 7.4.824 Problem: Can't compile without the multi-byte feature. (John Marriott) Solution: Add #ifdef. v7.4.824 Bram Moolenaar 2015-08-12 22:56:58 +02:00
  • fc39ecf8de Update runtime files. Bram Moolenaar 2015-08-11 20:34:49 +02:00
  • 25c2f6783a patch 7.4.823 Problem: Cursor moves after CTRL-A on alphabetic character. Solution: (Hirohito Higashi, test by Christian Brabandt) v7.4.823 Bram Moolenaar 2015-08-11 19:36:42 +02:00
  • cde8854730 patch 7.4.822 Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt) v7.4.822 Bram Moolenaar 2015-08-11 19:14:00 +02:00
  • bd8539aac3 patch 7.4.821 Problem: Coverity reports a few problems. Solution: Avoid the warnings. (Christian Brabandt) v7.4.821 Bram Moolenaar 2015-08-11 18:53:03 +02:00
  • 8fee878fe2 patch 7.4.820 Problem: Invalid memory access in file_pat_to_reg_pat. Solution: Avoid looking before the start of a string. (Dominique Pelle) v7.4.820 Bram Moolenaar 2015-08-11 18:45:48 +02:00
  • 901e58c243 patch 7.4.819 Problem: Beeping when running the tests. Solution: Fix 41 beeps. (Roland Eggner) v7.4.819 Bram Moolenaar 2015-08-11 18:33:48 +02:00
  • 89c17c02ca patch 7.4.818 Problem: 'linebreak' breaks c% if the last Visual selection was block. (Chris Morganiser, Issue 389) Solution: Handle Visual block mode differently. (Christian Brabandt) v7.4.818 Bram Moolenaar 2015-08-11 17:46:36 +02:00
  • 2288afed42 patch 7.4.817 Problem: Invalid memory access in file_pat_to_reg_pat(). Solution: Use vim_isspace() instead of checking for a space only. (Dominique Pelle) v7.4.817 Bram Moolenaar 2015-08-11 16:20:05 +02:00
  • dd8a5286e1 patch 7.4.816 Problem: Invalid memory access when doing ":fun X(". Solution: Check for missing ')'. (Dominique Pelle) v7.4.816 Bram Moolenaar 2015-08-11 15:54:52 +02:00
  • 73627d0bd4 patch 7.4.815 Problem: Invalid memory access when doing ":call g:". Solution: Check for an empty name. (Dominique Pelle) v7.4.815 Bram Moolenaar 2015-08-11 15:46:09 +02:00
  • 382197865c patch 7.4.814 Problem: Illegal memory access with "sy match a fold". Solution: Check for empty string. (Dominique Pelle) v7.4.814 Bram Moolenaar 2015-08-11 15:27:13 +02:00
  • dbd24b5967 patch 7.4.813 Problem: It is not possible to save and restore character search state. Solution: Add getcharsearch() and setcharsearch(). (James McCoy) v7.4.813 Bram Moolenaar 2015-08-11 14:26:19 +02:00
  • fbd302ff38 patch 7.4.812 Problem: Gcc sanitizer complains about using a NULL pointer to memmove(). Solution: Only call memmove when there is something to move. (Vittorio Zecca) v7.4.812 Bram Moolenaar 2015-08-08 18:23:46 +02:00
  • 204b93f958 patch 7.4.811 Problem: Invalid memory access when using "exe 'sc'". Solution: Avoid going over the end of the string. (Dominique Pelle) v7.4.811 Bram Moolenaar 2015-08-04 22:02:51 +02:00
  • 9dd33af4ba patch 7.4.810 Problem: With a sequence of commands using buffers in diff mode E749 is given. (itchyny) Solution: Skip unloaded buffer. (Hirohito Higashi) v7.4.810 Bram Moolenaar 2015-08-04 21:51:25 +02:00
  • 75e6413546 patch 7.4.809 Problem: Test is duplicated. Solution: Roll back 7.4.802. v7.4.809 Bram Moolenaar 2015-08-04 21:27:11 +02:00
  • bb86ebb0ef patch 7.4.808 Problem: On MS-Windows 8 IME input doen't work correctly. Solution: Read console input before calling MsgWaitForMultipleObjects(). (vim-jp, Nobuhiro Takasaki) v7.4.808 Bram Moolenaar 2015-08-04 19:27:05 +02:00
  • 0bbcb5c8ef patch 7.4.807 Problem: After CTRL-V CTRL-A mode isn't updated. (Hirohito Higashi) Solution: Clear the command line or update the displayed command. v7.4.807 Bram Moolenaar 2015-08-04 19:18:52 +02:00
  • cc218ab3ca patch 7.4.806 Problem: CTRL-A in Visual mode doesn't work properly with "alpha" in 'nrformat'. Solution: Make it work. (Christian Brabandt) v7.4.806 Bram Moolenaar 2015-08-04 18:23:22 +02:00
  • 29bc9db36e patch 7.4.805 Problem: The ruler shows "Bot" even when there are only filler lines missing. (Gary Johnson) Solution: Use "All" when the first line and one filler line are visible. v7.4.805 Bram Moolenaar 2015-08-04 17:43:25 +02:00
  • 43fe32900c patch 7.4.804 Problem: Xxd doesn't have a license notice. Solution: Add license as indicated by Juergen. v7.4.804 Bram Moolenaar 2015-08-04 17:29:07 +02:00
  • f7bb86dc59 patch 7.4.803 Problem: C indent does not support C11 raw strings. (Mark Lodato) Solution: Do not change indent inside the raw string. v7.4.803 Bram Moolenaar 2015-07-28 21:17:36 +02:00
  • 52e21cf057 patch 7.4.802 Problem: Using "A" in Visual mode while 'linebreak' is set is not tested. Solution: Add a test for this, verifies the problem is fixed. (Ingo Karkat) v7.4.802 Bram Moolenaar 2015-07-28 17:16:33 +02:00
  • 278236000f patch 7.4.801 Problem: Test for ":diffoff" doesn't catch all potential problems. Solution: Add a :diffthis and a :diffoff command. (Olaf Dabrunz) v7.4.801 Bram Moolenaar 2015-07-28 14:42:45 +02:00
  • 829aef1eb4 patch 7.4.800 Problem: Using freed memory when triggering CmdUndefined autocommands. Solution: Set pointer to NULL. (Dominique Pelle) v7.4.800 Bram Moolenaar 2015-07-28 14:25:48 +02:00
  • 6b9be1b6f2 patch 7.4.799 Problem: Accessing memory before an allocated block. Solution: Check for not going before the start of a pattern. (Dominique Pelle) v7.4.799 Bram Moolenaar 2015-07-28 13:33:45 +02:00
  • 31b259bf95 patch 7.4.798 Problem: Repeating a change in Visual mode does not work as expected. (Urtica Dioica) Solution: Make redo in Visual mode work better. (Christian Brabandt) v7.4.798 Bram Moolenaar 2015-07-28 11:21:32 +02:00
  • 5f95f288a2 patch 7.4.797 Problem: Crash when using more lines for the command line than 'maxcombine'. Solution: Use the correct array index. Also, do not try redrawing when exiting. And use screen_Columns instead of Columns. v7.4.797 Bram Moolenaar 2015-07-25 22:53:00 +02:00
  • 33c3a694fc patch 7.4.796 Problem: Warning from 64 bit compiler. Solution: Add type cast. (Mike Williams) v7.4.796 Bram Moolenaar 2015-07-22 22:46:13 +02:00
  • dd1616e6ce Correct optwin script, update PHP complete. Bram Moolenaar 2015-07-22 22:22:59 +02:00
  • b388be0abf patch 7.4.795 Problem: The 'fixeol' option is not copied to a new window. Solution: Copy the option value. (Yasuhiro Matsumoto) v7.4.795 Bram Moolenaar 2015-07-22 22:19:38 +02:00
  • d4a95c3bc5 patch 7.4.794 Problem: Visual Studio 2015 is not recognized. Solution: Add the version numbers to the makefile. (Taro Muraoka) v7.4.794 Bram Moolenaar 2015-07-21 20:22:12 +02:00
  • f91328100d Updated and new runtime files. Bram Moolenaar 2015-07-21 19:19:13 +02:00
  • 165bc69d1b patch 7.4.793 Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt) v7.4.793 Bram Moolenaar 2015-07-21 17:53:25 +02:00
  • 6561d52ecb patch 7.4.792 Problem: Can only conceal text by defining syntax items. Solution: Use matchadd() to define concealing. (Christian Brabandt) v7.4.792 Bram Moolenaar 2015-07-21 15:48:27 +02:00
  • d51cb706a4 patch 7.4.791 Problem: The buffer list can be very long. Solution: Add an argument to ":ls" to specify the type of buffer to list. (Marcin Szamotulski) v7.4.791 Bram Moolenaar 2015-07-21 15:03:06 +02:00
  • d113a80c77 patch 7.4.790 Problem: Test fails when the autochdir feature is not available. Test output contains the test script. Solution: Check for the autochdir feature. (Kazunobu Kuriyama) Only write the relevant test output. v7.4.790 Bram Moolenaar 2015-07-21 10:57:44 +02:00
  • 9cac424d05 patch 7.4.789 Problem: Using freed memory and crash. (Dominique Pellej) Solution: Correct use of pointers. (Hirohito Higashi) v7.4.789 Bram Moolenaar 2015-07-19 14:42:23 +02:00
  • 5cbb8dbc32 patch 7.4.788 Problem: Can't build without the crypt feature. (John Marriott) Solution: Add #ifdef's. v7.4.788 Bram Moolenaar 2015-07-17 23:08:29 +02:00
  • fb9bc4829a patch 7.4.787 Problem: snprintf() isn't available everywhere. Solution: Use vim_snprintf(). (Ken Takata) v7.4.787 Bram Moolenaar 2015-07-17 22:04:48 +02:00
  • 537443018d patch 7.4.786 Problem: It is not possible for a plugin to adjust to a changed setting. Solution: Add the OptionSet autocommand event. (Christian Brabandt) v7.4.786 Bram Moolenaar 2015-07-17 17:38:22 +02:00
  • 34d72d4b6c patch 7.4.785 Problem: On some systems automatically adding the missing EOL causes problems. Setting 'binary' has too many side effects. Solution: Add the 'fixeol' option, default on. (Pavel Samarkin) v7.4.785 Bram Moolenaar 2015-07-17 14:18:08 +02:00
  • 2cf6938706 patch 7.4.784 Problem: Using both "noinsert" and "noselect" in 'completeopt' does not work properly. Solution: Change the ins_complete() calls. (Ozaki Kiichi) v7.4.784 Bram Moolenaar 2015-07-17 13:42:23 +02:00
  • 2536d4f396 patch 7.4.783 Problem: copy_chars() and copy_spaces() are inefficient. Solution: Use memset() instead. (Dominique Pelle) v7.4.783 Bram Moolenaar 2015-07-17 13:22:51 +02:00
  • 5d1bc78a2b patch 7.4.782 Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode. Solution: Fix the reported problems. (Christian Brabandt) v7.4.782 Bram Moolenaar 2015-07-17 13:03:48 +02:00
  • fe6f186877 patch 7.4.781 Problem: line2byte() returns one less when 'bin' and 'noeol' are set. Solution: Only adjust the size for the last line. (Rob Wu) v7.4.781 Bram Moolenaar 2015-07-12 17:52:57 +02:00
  • 1db43b1145 patch 7.4.780 Problem: Compiler complains about uninitialized variable and clobbered variables. Solution: Add Initialization. Make variables static. v7.4.780 Bram Moolenaar 2015-07-12 16:21:23 +02:00
  • 3ec3261980 patch 7.4.779 Problem: Using CTRL-A in a line without a number moves the cursor. May cause a crash when at the start of the line. (Urtica Dioica) Solution: Do not move the cursor if no number was changed. v7.4.779 Bram Moolenaar 2015-07-12 15:02:38 +02:00
  • ae2fe73abc patch 7.4.778 Problem: Coverity warns for uninitialized variable. Solution: Change condition of assignment. v7.4.778 Bram Moolenaar 2015-07-10 22:38:00 +02:00
  • 86ae720d75 Updated runtime files. Bram Moolenaar 2015-07-10 19:31:35 +02:00
  • 694cac7a35 patch 7.4.777 Problem: The README file doesn't look nice on github. Solution: Add a markdown version of the README file. v7.4.777 Bram Moolenaar 2015-07-10 19:22:03 +02:00
  • 2c61ec65e8 patch 7.4.776 Problem: Equivalence class for 'd' does not work correctly. Solution: Fix 0x1e0f and 0x1d0b. (Dominique Pelle) v7.4.776 Bram Moolenaar 2015-07-10 19:16:34 +02:00
  • efcabd6892 Add files missing from patch 7.4.771. Bram Moolenaar 2015-07-10 18:23:59 +02:00
  • b6be1e2390 patch 7.4.775 Problem: It is not possible to avoid using the first item of completion. Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo Matsu) v7.4.775 Bram Moolenaar 2015-07-10 18:18:40 +02:00
  • 42a4512f62 patch 7.4.774 Problem: When using the CompleteDone autocommand event it's difficult to get to the completed items. Solution: Add the v:completed_items variable. (Shougo Matsu) v7.4.774 Bram Moolenaar 2015-07-10 17:56:23 +02:00
  • ae94b7718a patch 7.4.773 Problem: 'langmap' is used in command-line mode when checking for mappings. Issue 376. Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez) v7.4.773 Bram Moolenaar 2015-07-10 17:19:30 +02:00
  • 5c5c9801b1 patch 7.4.772 Problem: Racket 6.2 is not supported on MS-Windows. Solution: Check for the "racket" subdirectory. (Weiyong Mao) v7.4.772 Bram Moolenaar 2015-07-10 16:12:48 +02:00