Bram Moolenaar
d019039ccd
patch 8.1.1914: command line expansion code is spread out
...
Problem: Command line expansion code is spread out.
Solution: Move set_one_cmd_context(). (Yegappan Lakshmanan, closes #4855 )
v8.1.1914
2019-08-23 21:17:35 +02:00
Bram Moolenaar
37f4cbd46f
patch 8.1.1913: not easy to compute the space on the command line
...
Problem: Not easy to compute the space on the command line.
Solution: Add v:echospace. (Daniel Hahler, closes #4732 )
v8.1.1913
2019-08-23 20:58:45 +02:00
Bram Moolenaar
570497ac40
patch 8.1.1912: more functions can be used as methods
...
Problem: More functions can be used as methods.
Solution: Make channel and job functions usable as a method.
v8.1.1912
2019-08-22 22:55:13 +02:00
Bram Moolenaar
64b4d73524
patch 8.1.1911: more functions can be used as methods
...
Problem: More functions can be used as methods.
Solution: Make a few more functions usable as a method.
v8.1.1911
2019-08-22 22:18:17 +02:00
Bram Moolenaar
448262176b
patch 8.1.1910: redrawing too much when toggling 'relativenumber'
...
Problem: Redrawing too much when toggling 'relativenumber'.
Solution: Only clear when 'signcolumn' is set to "number". (Yegappan
Lakshmanan, closes #4852 )
v8.1.1910
2019-08-22 21:23:20 +02:00
Bram Moolenaar
e49fbff384
patch 8.1.1909: more functions can be used as methods
...
Problem: More functions can be used as methods.
Solution: Make a few more functions usable as a method.
v8.1.1909
2019-08-21 22:50:07 +02:00
Bram Moolenaar
00b0d6d8dc
patch 8.1.1908: every popup window consumes a buffer number
...
Problem: Every popup window consumes a buffer number.
Solution: Recycle buffers only used for popup windows. Do not list popup
window buffers.
v8.1.1908
2019-08-21 22:25:30 +02:00
Bram Moolenaar
fe6e7618b4
patch 8.1.1907: wrong position for info popup with scrollbar on the left
...
Problem: Wrong position for info popup with scrollbar on the left.
Solution: Take the scrollbar into account.
v8.1.1907
2019-08-21 20:57:20 +02:00
Bram Moolenaar
c1f87c9a31
patch 8.1.1906: info popup size is sometimes incorrect
...
Problem: Info popup size is sometimes incorrect.
Solution: Compute the position and size after setting the content.
v8.1.1906
2019-08-21 19:33:16 +02:00
Bram Moolenaar
c7c5f10a36
patch 8.1.1905: cannot set all properties of the info popup
...
Problem: Cannot set all properties of the info popup.
Solution: Add popup_findinfo(). Rename popup_getpreview() to
popup_findpreview().
v8.1.1905
2019-08-21 18:31:03 +02:00
Bram Moolenaar
258cef59d8
patch 8.1.1904: cannot have an info popup align with the popup menu
...
Problem: Cannot have an info popup align with the popup menu.
Solution: Add the "align" item to 'completepopup'.
v8.1.1904
2019-08-21 17:29:29 +02:00
Bram Moolenaar
9cb698d564
patch 8.1.1903: cannot build without the +eval feature
...
Problem: Cannot build without the +eval feature.
Solution: Add missing #ifdefs
v8.1.1903
2019-08-21 15:30:45 +02:00
Bram Moolenaar
bd483b3f57
patch 8.1.1902: cannot have an info popup without a border
...
Problem: Cannot have an info popup without a border.
Solution: Add the "border" item to 'completepopup'.
v8.1.1902
2019-08-21 15:13:41 +02:00
Bram Moolenaar
e2c453d38f
patch 8.1.1901: the +insert_expand feature is not always available
...
Problem: The +insert_expand feature is not always available.
Solution: Graduate the +insert_expand feature.
v8.1.1901
2019-08-21 14:37:09 +02:00
Bram Moolenaar
d933c82ff4
patch 8.1.1900: sign test fails in the GUI
...
Problem: Sign test fails in the GUI.
Solution: Catch and ignore the exception.
v8.1.1900
2019-08-21 13:45:16 +02:00
Bram Moolenaar
42aff46d97
patch 8.1.1899: sign_place() does not work as documented
...
Problem: sign_place() does not work as documented.
Solution: Make accept line numbers like line(). (Yegappan Lakshmanan,
closes #4848 )
v8.1.1899
2019-08-21 13:20:29 +02:00
Bram Moolenaar
4dc8f498aa
patch 8.1.1898: crash when out of memory during startup
...
Problem: Crash when out of memory during startup.
Solution: When out of memory message given during initialisation bail out.
(closes #4842 )
v8.1.1898
2019-08-21 13:06:55 +02:00
Bram Moolenaar
f1552d07d7
patch 8.1.1897: may free memory twice when out of memory
...
Problem: May free memory twice when out of memory.
Solution: Check that backslash_halve_save() returns a different pointer.
(Dominique Pelle, closes #4847 )
v8.1.1897
2019-08-21 12:54:18 +02:00
Bram Moolenaar
eaf3524119
patch 8.1.1896: compiler warning for unused variable
...
Problem: Compiler warning for unused variable.
Solution: Add #ifdef. (John Marriott) Missing part of 8.1.1892.
v8.1.1896
2019-08-20 23:14:15 +02:00
Bram Moolenaar
6f10c70b59
patch 8.1.1895: using NULL pointer when out of memory
...
Problem: Using NULL pointer when out of memory.
Solution: Bail out or skip the code using the pointer. (Zu-Ming Jiang,
closes #4805 , closes #4843 , closes #4939 , closes #4844 )
v8.1.1895
2019-08-20 22:58:37 +02:00
Bram Moolenaar
1058c9d9b5
patch 8.1.1894: not checking for out-of-memory of autoload_name()
...
Problem: Not checking for out-of-memory of autoload_name().
Solution: Check for NULL. (Dominique Pelle, closes #4846 )
v8.1.1894
2019-08-20 21:58:00 +02:00
Bram Moolenaar
f1e0544d41
patch 8.1.1893: script to summarize test results can be improved
...
Problem: Script to summarize test results can be improved.
Solution: Use "silent" for substitute to avoid reporting number of matches.
Remove duplicate "set nocp". (Daniel Hahler, closes #4845 )
v8.1.1893
2019-08-20 21:25:46 +02:00
Bram Moolenaar
36e4d985f0
patch 8.1.1892: missing index entry and option menu for 'completepopup'
...
Problem: Missing index entry and option menu for 'completepopup'.
Solution: Add the entries. Adjust #ifdefs to avoid dead code.
v8.1.1892
2019-08-20 21:12:16 +02:00
Bram Moolenaar
5843f5f37b
patch 8.1.1891: functions used in one file are global
...
Problem: Functions used in one file are global.
Solution: Add "static". (Yegappan Lakshmanan, closes #4840 )
v8.1.1891
2019-08-20 20:13:45 +02:00
Bram Moolenaar
9a4a8c4d59
patch 8.1.1890: ml_get error when deleting fold marker
...
Problem: Ml_get error when deleting fold marker.
Solution: Check that the line number is not below the last line. Adjust the
fold when deleting the empty line. (Christian Brabandt,
closes #4834 )
v8.1.1890
2019-08-19 22:48:30 +02:00
Bram Moolenaar
ea7ecfe2a0
patch 8.1.1889: Coverity warns for using a NULL pointer
...
Problem: Coverity warns for using a NULL pointer.
Solution: Use zero for column if pos is NULL.
v8.1.1889
2019-08-19 20:08:15 +02:00
Bram Moolenaar
073e4b92e6
patch 8.1.1888: more functions can be used as methods
...
Problem: More functions can be used as methods.
Solution: Make various functions usable as a method.
v8.1.1888
2019-08-18 23:01:56 +02:00
Bram Moolenaar
0a52df50a0
patch 8.1.1887: the +cmdline_compl feature is not in the tiny version
...
Problem: The +cmdline_compl feature is not in the tiny version.
Solution: Graduate the +cmdline_compl feature.
v8.1.1887
2019-08-18 22:26:31 +02:00
Bram Moolenaar
66b51420e0
patch 8.1.1886: command line expansion code is spread out
...
Problem: Command line expansion code is spread out.
Solution: Move the code to cmdexpand.c. (Yegappan Lakshmanan, closes #4831 )
v8.1.1886
2019-08-18 21:44:12 +02:00
Bram Moolenaar
db1085a563
patch 8.1.1885: comments in libvterm are inconsistent
...
Problem: Comments in libvterm are inconsistent.
Solution: Use // comments. Als update the table of combining characters.
v8.1.1885
2019-08-18 20:41:38 +02:00
Bram Moolenaar
f0bc15c769
patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert mode
...
Problem: Cannot use mouse scroll wheel in popup in Insert mode. Mouse
clicks in popup close the popup menu.
Solution: Check if the mouse is in a popup window. Do not let mouse events
close the popup menu. (closes #4544 )
v8.1.1884
2019-08-18 19:23:45 +02:00
Bram Moolenaar
9513d91be0
patch 8.1.1883: options test fails
...
Problem: Options test fails.
Solution: Add entry for 'completepopup'.
v8.1.1883
2019-08-18 17:58:11 +02:00
Bram Moolenaar
62a0cb443c
patch 8.1.1882: cannot specify properties of the info popup window
...
Problem: Cannot specify properties of the info popup window.
Solution: Add the 'completepopup' option. Default to PmenuSel highlight.
v8.1.1882
2019-08-18 16:35:23 +02:00
Bram Moolenaar
f4665e78f2
patch 8.1.1881: popup window test fails in some configurations
...
Problem: Popup window test fails in some configurations.
Solution: Check that screendumps can be made.
v8.1.1881
2019-08-18 15:42:10 +02:00
Bram Moolenaar
576a4a6ff1
patch 8.1.1880: cannot show extra info for completion in a popup window
...
Problem: Cannot show extra info for completion in a popup window.
Solution: Add the "popup" entry in 'completeopt'.
v8.1.1880
2019-08-18 15:25:17 +02:00
Bram Moolenaar
93cf85f9ef
patch 8.1.1879: more functions can be used as methods
...
Problem: More functions can be used as methods.
Solution: Make float functions usable as a method.
v8.1.1879
2019-08-17 21:36:28 +02:00
Bram Moolenaar
9cfe8f6e68
patch 8.1.1878: negative float before method not parsed correctly
...
Problem: Negative float before method not parsed correctly.
Solution: Apply "!" and "-" in front of expression before using ->.
v8.1.1878
2019-08-17 21:04:16 +02:00
Bram Moolenaar
ffc0716af8
patch 8.1.1877: graduated features scattered
...
Problem: Graduated features scattered.
Solution: Put graduated and obsolete features together.
v8.1.1877
2019-08-17 20:17:51 +02:00
Bram Moolenaar
f8b055d170
patch 8.1.1876: proto file missing from distribution
...
Problem: proto file missing from distribution
Solution: Add the file.
v8.1.1876
2019-08-17 20:10:42 +02:00
Bram Moolenaar
56c860c315
Update runtime files.
2019-08-17 20:09:31 +02:00
Bram Moolenaar
e9bd57286a
patch 8.1.1875: cannot get size and position of the popup menu
...
Problem: Cannot get size and position of the popup menu.
Solution: Add pum_getpos(). (Ben Jackson, closes #4827 )
v8.1.1875
2019-08-17 19:36:06 +02:00
Bram Moolenaar
4dd751b956
patch 8.1.1874: modeless selection in popup window overlaps scrollbar
...
Problem: Modeless selection in popup window overlaps scrollbar.
Solution: Subtract scrollbar from max_col. (closes #4773 )
v8.1.1874
2019-08-17 19:10:53 +02:00
Bram Moolenaar
df70775555
patch 8.1.1873: cannot build tiny version
...
Problem: Cannot build tiny version.
Solution: Remove #ifdef for is_autocmd_blocked().
v8.1.1873
2019-08-17 17:50:07 +02:00
Bram Moolenaar
c7226684c8
patch 8.1.1872: when Vim exits because of a signal, VimLeave is not triggered
...
Problem: When Vim exits because of a signal, VimLeave is not triggered.
(Daniel Hahler)
Solution: Unblock autocommands when triggering VimLeave. (closes #4818 )
v8.1.1872
2019-08-17 16:33:23 +02:00
Bram Moolenaar
ff9f27cdc7
patch 8.1.1871: modeless selection in GUI still not correct
...
Problem: Modeless selection in GUI still not correct.
Solution: Fix max_col.
v8.1.1871
2019-08-17 16:15:53 +02:00
Bram Moolenaar
026587b35c
patch 8.1.1870: using :pedit from a help file sets help filetype
...
Problem: Using :pedit from a help file sets the preview window to help
filetype. (Wang Shidong)
Solution: Do not set "keep_help_flag". (closes #3536 )
v8.1.1870
2019-08-17 15:08:00 +02:00
Bram Moolenaar
4ad62155a1
patch 8.1.1869: code for the argument list is spread out
...
Problem: Code for the argument list is spread out.
Solution: Put argument list code in arglist.c. (Yegappan Lakshmanan,
closes #4819 )
v8.1.1869
2019-08-17 14:38:55 +02:00
Bram Moolenaar
69cbbecf54
patch 8.1.1868: multi-byte chars in 'listchars' fail with 'linebreak' set
...
Problem: Multibyte characters in 'listchars' don't work correctly if
'linebreak' is also enabled. (Martin Tournoij)
Solution: Make it work correctly. (Christian Brabandt, closes #4822 ,
closes #4812 )
v8.1.1868
2019-08-17 14:10:56 +02:00
Bram Moolenaar
315244d85b
patch 8.1.1867: still a timer test that is flaky on Mac
...
Problem: Still a timer test that is flaky on Mac.
Solution: Loop with a sleep instead of one fixed sleep.
v8.1.1867
2019-08-17 13:18:16 +02:00
Bram Moolenaar
d5cf89872e
patch 8.1.1866: modeless selection in GUI does not work properly
...
Problem: Modeless selection in GUI does not work properly.
Solution: Avoid going beyond the end of the line. (closes #4783 )
v8.1.1866
2019-08-16 23:09:11 +02:00