summaryrefslogtreecommitdiff
path: root/src/os_unix.c
AgeCommit message (Collapse)Author
2012-10-14updated for version 7.3.690Bram Moolenaar
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-08-15updated for version 7.3.633Bram Moolenaar
Problem: Selection remains displayed as selected after selecting another text. Solution: Call xterm_update() before select(). (Andrew Pimlott)
2012-08-15updated for version 7.3.632Bram Moolenaar
Problem: Cannot select beyond 222 columns with the mouse in xterm. Solution: Add support for SGR mouse tracking. (Hayaki Saito)
2012-04-20updated for version 7.3.499Bram Moolenaar
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-02-05updated for version 7.3.432Bram Moolenaar
Problem: ACLs are not supported for ZFS or NFSv4 on Solaris. Solution: Add configure check and code. (Danek Duvall)
2012-01-10updated for version 7.3.400Bram Moolenaar
Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
2011-10-20updated for version 7.3.343Bram Moolenaar
Problem: No mouse support for urxvt. Solution: Implement urxvt mouse support, also for > 252 columns. (Yiding Jia)
2011-10-12updated for version 7.3.337Bram Moolenaar
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-09-08updated for version 7.3.303Bram Moolenaar
Problem: Compilation error. Solution: Correct return type from int to pid_t. (Danek Duvall)
2011-09-07updated for version 7.3.296Bram Moolenaar
Problem: When writing to an external command a zombie process may be left behind. Solution: Wait on the process. (James Vega)
2011-09-07updated for version 7.3.295Bram Moolenaar
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-08-04updated for version 7.3.269Bram Moolenaar
Problem: 'shellcmdflag' only works with one flag. Solution: Split into multiple arguments. (Gary Johnson)
2011-08-04updated for version 7.3.268Bram Moolenaar
Problem: Vim freezes when executing an external command with zsh. Solution: Use O_NOCTTY both in the master and slave. (Bjorn Winckler)
2011-07-07updated for version 7.3.240Bram Moolenaar
Problem: External commands can't use pipes on MS-Windows. Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent Berthoux)
2011-04-11updated for version 7.3.160Bram Moolenaar
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
2011-02-15updated for version 7.3.124Bram Moolenaar
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-09updated for version 7.3.118Bram Moolenaar
Problem: Ruby uses SIGVTALARM which makes Vim exit. (Alec Tica) Solution: Ignore SIGVTALARM. (Dominique Pelle)
2010-12-17updated for version 7.3.083Bram Moolenaar
Problem: When a read() or write() is interrupted by a signal it fails. Solution: Add read_eintr() and write_eintr().
2010-10-20updated for version 7.3.031Bram Moolenaar
Problem: Can't pass the X window ID to another application. Solution: Add v:windowid. (Christian J. Robinson, Lech Lorens)
2010-10-13updated for version 7.3.023Bram Moolenaar
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-09-21updated for version 7.3.011Bram Moolenaar
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-08-08Remove unused code.Bram Moolenaar
2010-07-29Few more fixes for VMS.Bram Moolenaar
2010-07-25Fix: terminal title not properly restured when there are multi-byteBram Moolenaar
characters. (partly by James Vega)
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-06-26Change remaining HAVE_GTK2 to FEAT_GUI_GTK.Bram Moolenaar
2010-06-25Remove the old and not well supported GTK 1 code. (James Vega)Bram Moolenaar
2010-06-22Fixes for time in clipboard request. Also fix ownership. (David Fries)Bram Moolenaar
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-05-22Included the patch to support netbeans in a terminal.Bram Moolenaar
2010-02-11updated for version 7.2.358Bram Moolenaar
Problem: Compiler warnings on VMS. (Zoltan Arpadffy) Solution: Pass array itself instead its address. Return a value.
2009-07-22updated for version 7.2-237Bram Moolenaar
2009-07-14updated for version 7.2-232Bram Moolenaar
2009-07-14updated for version 7.2-229Bram Moolenaar
2009-06-16updated for version 7.2-200Bram Moolenaar
2009-05-17updated for version 7.2-180Bram Moolenaar
2009-05-16updated for version 7.2-176Bram Moolenaar
2009-05-15updated for version 7.2-174Bram Moolenaar
2009-05-13updated for version 7.2-168Bram Moolenaar
2009-03-02updated for version 7.2-130Bram Moolenaar
2009-02-22updated for version 7.2-121Bram Moolenaar
2009-02-04updated for version 7.2-097Bram Moolenaar
2008-11-28updated for version 7.2-055Bram Moolenaar
2008-11-12updated for version 7.2-037Bram Moolenaar
2008-11-12updated for version 7.2-035Bram Moolenaar
2008-08-06updated for version 7.2c-000Bram Moolenaar
2008-06-29updated for version 7.2a-009Bram Moolenaar
2008-06-24updated for version 7.2aBram Moolenaar
2008-06-21updated for version 7.1-328Bram Moolenaar
2008-06-20updated for version 7.1-318Bram Moolenaar