Bram Moolenaar
f8de161090
updated for version 7.3.899
...
Problem: #if indents are off.
Solution: Fix the indents.
2013-04-15 15:32:25 +02:00
Bram Moolenaar
95a5135118
updated for version 7.3.875
...
Problem: Build problem with some combination of features.
Solution: Use FEAT_XCLIPBOARD instead of FEAT_CLIPBOARD.
2013-03-21 22:53:50 +01:00
Bram Moolenaar
090cfc1b02
updated for version 7.3.866
...
Problem: Not serving the X selection during system() isn't nice.
Solution: When using fork() do not loose the selection, keep serving it.
Add a loop similar to handling I/O. (Yukihiro Nakadaira)
2013-03-19 12:35:42 +01:00
Bram Moolenaar
1a0316ca2a
updated for version 7.3.856
...
Problem: When calling system() multi-byte clipboard contents is garbled.
Solution: Save and restore the clipboard contents. (Yukihiro Nakadaira)
2013-03-13 17:50:25 +01:00
Bram Moolenaar
693e40c2cd
updated for version 7.3.836
...
Problem: Clipboard does not work on Win32 when compiled with Cygwin.
Solution: Move the Win32 clipboard code to a separate file and use it when
building with os_unix.c. (Frodak Baksik, Ken Takata)
2013-02-26 14:56:42 +01:00
Bram Moolenaar
7567646f13
updated for version 7.3.791
...
Problem: MzScheme interface doesn't work propely.
Solution: Make it work better. (Sergey Khorev)
2013-01-30 14:55:42 +01:00
Bram Moolenaar
dac7569612
updated for version 7.3.690
...
Problem: When the current directory name is exactly the maximum path length
Vim may crash.
Solution: Only add "/" when there is room. (Danek Duvall)
2012-10-14 04:35:45 +02:00
Bram Moolenaar
dd82d699c8
updated for version 7.3.633
...
Problem: Selection remains displayed as selected after selecting another
text.
Solution: Call xterm_update() before select(). (Andrew Pimlott)
2012-08-15 17:26:57 +02:00
Bram Moolenaar
2b9578f0f8
updated for version 7.3.632
...
Problem: Cannot select beyond 222 columns with the mouse in xterm.
Solution: Add support for SGR mouse tracking. (Hayaki Saito)
2012-08-15 16:21:32 +02:00
Bram Moolenaar
6be120e7f5
updated for version 7.3.499
...
Problem: When using any interface language when Vim is waiting for a child
process it gets confused by a child process started through the
interface.
Solution: Always used waitpid() instead of wait(). (Yasuhiro Matsumoto)
2012-04-20 15:55:16 +02:00
Bram Moolenaar
8d462f9666
updated for version 7.3.432
...
Problem: ACLs are not supported for ZFS or NFSv4 on Solaris.
Solution: Add configure check and code. (Danek Duvall)
2012-02-05 22:51:33 +01:00
Bram Moolenaar
70b2a56d5a
updated for version 7.3.400
...
Problem: Compiler warnings for shadowed variables.
Solution: Remove or rename the variables.
2012-01-10 22:26:17 +01:00
Bram Moolenaar
c842748302
updated for version 7.3.343
...
Problem: No mouse support for urxvt.
Solution: Implement urxvt mouse support, also for > 252 columns. (Yiding
Jia)
2011-10-20 21:09:35 +02:00
Bram Moolenaar
2e7b1df8fa
updated for version 7.3.337
...
Problem: Screen doesn't update after resizing the xterm until a character
is typed.
Solution: When the select call is interrupted check do_resize. (Taylor
Hedberg)
2011-10-12 21:04:20 +02:00
Bram Moolenaar
9f1188152f
updated for version 7.3.303
...
Problem: Compilation error.
Solution: Correct return type from int to pid_t. (Danek Duvall)
2011-09-08 23:24:14 +02:00
Bram Moolenaar
205b886a41
updated for version 7.3.296
...
Problem: When writing to an external command a zombie process may be left
behind.
Solution: Wait on the process. (James Vega)
2011-09-07 15:04:31 +02:00
Bram Moolenaar
493c7a8541
updated for version 7.3.295
...
Problem: When filtering text with an external command Vim may not read all
the output.
Solution: When select() is interrupted loop and try again. (James Vega)
2011-09-07 14:06:47 +02:00
Bram Moolenaar
ea35ef6888
updated for version 7.3.269
...
Problem: 'shellcmdflag' only works with one flag.
Solution: Split into multiple arguments. (Gary Johnson)
2011-08-04 22:59:28 +02:00
Bram Moolenaar
e70172e1fc
updated for version 7.3.268
...
Problem: Vim freezes when executing an external command with zsh.
Solution: Use O_NOCTTY both in the master and slave. (Bjorn Winckler)
2011-08-04 19:36:52 +02:00
Bram Moolenaar
4b9669f1dc
updated for version 7.3.240
...
Problem: External commands can't use pipes on MS-Windows.
Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent
Berthoux)
2011-07-07 16:20:52 +02:00
Bram Moolenaar
ef9d6aa70d
updated for version 7.3.160
...
Problem: Unsafe string copying.
Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead
of strcat().
2011-04-11 16:56:35 +02:00
Bram Moolenaar
cab35ad26d
updated for version 7.3.124
...
Problem: When writing a file in binary mode it may be missing the final EOL
if a file previously read was missing the EOL. (Kevin Goodsell)
Solution: Move the write_no_eol_lnum into the buffer struct.
2011-02-15 17:39:22 +01:00
Bram Moolenaar
b292a2a04c
updated for version 7.3.118
...
Problem: Ruby uses SIGVTALARM which makes Vim exit. (Alec Tica)
Solution: Ignore SIGVTALARM. (Dominique Pelle)
2011-02-09 18:47:40 +01:00
Bram Moolenaar
540fc6fbdb
updated for version 7.3.083
...
Problem: When a read() or write() is interrupted by a signal it fails.
Solution: Add read_eintr() and write_eintr().
2010-12-17 16:27:16 +01:00
Bram Moolenaar
727c876b78
updated for version 7.3.031
...
Problem: Can't pass the X window ID to another application.
Solution: Add v:windowid. (Christian J. Robinson, Lech Lorens)
2010-10-20 19:17:48 +02:00
Bram Moolenaar
624891f3ef
updated for version 7.3.023
...
Problem: External program may hang when it tries to write to the tty.
Solution: Don't close the slave tty until after the child exits. (Nikola
Knezevic)
2010-10-13 16:22:09 +02:00
Bram Moolenaar
62b42181fb
updated for version 7.3.011
...
Problem: X11 clipboard doesn't work in Athena/Motif GUI. First selection
after a shell command doesn't work.
Solution: When using the GUI use XtLastTimestampProcessed() instead of
changing a property. (partly by Toni Ronkko)
When executing a shell command disown the selection.
2010-09-21 22:09:37 +02:00
Bram Moolenaar
09092155a6
Remove unused code.
2010-08-08 16:38:42 +02:00
Bram Moolenaar
48bae372e9
Few more fixes for VMS.
2010-07-29 23:12:15 +02:00
Bram Moolenaar
f82bac3717
Fix: terminal title not properly restured when there are multi-byte
...
characters. (partly by James Vega)
2010-07-25 22:30:20 +02:00
Bram Moolenaar
cc448b373d
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
2010-07-14 16:52:17 +02:00
Bram Moolenaar
0eda7ac7f8
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
2010-06-26 05:38:18 +02:00
Bram Moolenaar
182c5be111
Remove the old and not well supported GTK 1 code. (James Vega)
2010-06-25 05:37:59 +02:00
Bram Moolenaar
7cfea75ed6
Fixes for time in clipboard request. Also fix ownership. (David Fries)
2010-06-22 06:07:12 +02:00
Bram Moolenaar
b26e6327e6
Add :nbstart and :nbclose.
2010-05-22 21:34:09 +02:00
Bram Moolenaar
67c5384434
Included the patch to support netbeans in a terminal.
2010-05-22 18:28:27 +02:00
Bram Moolenaar
b4990bf90b
updated for version 7.2.358
...
Problem: Compiler warnings on VMS. (Zoltan Arpadffy)
Solution: Pass array itself instead its address. Return a value.
2010-02-11 18:19:38 +01:00
Bram Moolenaar
20de1c20e6
updated for version 7.2-237
2009-07-22 11:28:11 +00:00
Bram Moolenaar
2572492eba
updated for version 7.2-232
2009-07-14 15:38:41 +00:00
Bram Moolenaar
262735ed58
updated for version 7.2-229
2009-07-14 10:20:22 +00:00
Bram Moolenaar
feba08b22a
updated for version 7.2-200
2009-06-16 13:12:07 +00:00
Bram Moolenaar
2c4278fc73
updated for version 7.2-180
2009-05-17 11:33:22 +00:00
Bram Moolenaar
8f0b2d46c7
updated for version 7.2-176
2009-05-16 14:41:10 +00:00
Bram Moolenaar
78a1531005
updated for version 7.2-174
2009-05-15 19:33:18 +00:00
Bram Moolenaar
0ab2a8870c
updated for version 7.2-168
2009-05-13 10:51:08 +00:00
Bram Moolenaar
76243bd847
updated for version 7.2-130
2009-03-02 01:47:02 +00:00
Bram Moolenaar
b3dc8fd3fd
updated for version 7.2-121
2009-02-22 01:52:59 +00:00
Bram Moolenaar
0725608d1a
updated for version 7.2-097
2009-02-04 13:19:42 +00:00
Bram Moolenaar
fe86f2d7cd
updated for version 7.2-055
2008-11-28 20:29:07 +00:00
Bram Moolenaar
a878510770
updated for version 7.2-037
2008-11-12 13:10:15 +00:00