summaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Collapse)Author
2013-06-29updated for version 7.3.1262Bram Moolenaar
Problem: Crash and compilation warnings with Cygwin. Solution: Check return value of XmbTextListToTextProperty(). Add type casts. Adjust #ifdefs. (Lech Lorens)
2013-06-15updated for version 7.3.1201Bram Moolenaar
Problem: When a startup script creates a preview window, it probably becomes the current window. Solution: Make another window the current one. (Christian Brabandt)
2013-06-12updated for version 7.3.1178Bram Moolenaar
Problem: Can't put all Vim config files together in one directory. Solution: Load ~/.vim/vimrc if ~/.vimrc does not exist. (Lech Lorens)
2013-05-11updated for version 7.3.933Bram Moolenaar
Problem: Ruby on Mac crashes due to GC failure. Solution: Init the stack from main(). (Hiroshi Shirosaki)
2013-03-19updated for version 7.3.867Bram Moolenaar
Problem: Matchparen does not update match when using auto-indenting. (Marc Aldorasi) Solution: Add the TextChanged and TextChangedI autocommand events.
2013-03-13updated for version 7.3.860Bram Moolenaar
Problem: When using --remote-expr try/catch does not work. (Andrey Radev) Solution: Set emsg_silent instead of emsg_off.
2013-03-13updated for version 7.3.859Bram Moolenaar
Problem: 'ambiwidth' must be set by the user. Solution: Detects East Asian ambiguous width (UAX #11) state of the terminal at the start-up time and 'ambiwidth' accordingly. (Hayaki Saito)
2013-01-17updated for version 7.3.765Bram Moolenaar
Problem: Segfault when doing "cclose" on BufUnload in a python function. (Sean Reifschneider) Solution: Skip window with NULL buffer. (Christian Brabandt)
2012-11-28updated for version 7.3.733Bram Moolenaar
Problem: Tests fail when including MzScheme. Solution: Change #ifdefs for vim_main2().
2012-04-25updated for version 7.3.508Bram Moolenaar
Problem: Default for v:register is not set. Solution: Init v:register in eval_init(). Correct for 'clipboard' before the main loop. (Ingo Karkat)
2012-03-28updated for version 7.3.484Bram Moolenaar
Problem: The -E and --echo-wid command line arguments are not mentioned in "vim --help". Solution: Add the help lines. (Dominique Pelle)
2012-02-12updated for version 7.3.441Bram Moolenaar
Problem: Newer versions of MzScheme (Racket) require earlier (trampolined) initialisation. Solution: Call mzscheme_main() early in main(). (Sergey Khorev)
2011-12-08updated for version 7.3.369Bram Moolenaar
Problem: When compiled with Gnome get an error message when using --help. Solution: Don't fork. (Ivan Krasilnikov)
2011-10-04updated for version 7.3.330Bram Moolenaar
Problem: When longjmp() is invoked if the X server gives an error the state is not properly restored. Solution: Reset vgetc_busy. (Yukihiro Nakadaira)
2011-05-10updated for version 7.3.187Bram Moolenaar
Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
2011-04-11updated for version 7.3.161Bram Moolenaar
Problem: Items on the stack may be too big. Solution: Make items static or allocate them.
2011-03-22updated for version 7.3.143Bram Moolenaar
Problem: Memfile is not tested sufficiently. Looking up blocks in a memfile is slow when there are many blocks. Solution: Add high level test and unittest. Adjust the number of hash buckets to the number of blocks. (Ivan Krasilnikov)
2011-02-15updated for version 7.3.123Bram Moolenaar
Problem: ml_get error when executing register being recorded into, deleting lines and 'conceallevel' is set. (ZyX) Solution: Don't redraw a line for concealing when it doesn't exist.
2010-12-17updated for version 7.3.085Bram Moolenaar
Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
2010-11-16updated for version 7.3.061Bram Moolenaar
Problem: Remote ":drop" does not respect 'autochdir'. (Peter Odding) Solution: Don't restore the directory when 'autochdir' is set. (Benjamin Fritz)
2010-09-29updated for version 7.3.016Bram Moolenaar
Problem: Netbeans doesn't work under Athena. Solution: Support Athena, just like Motif. (Xavier de Gaye)
2010-08-08Remove unused code.Bram Moolenaar
2010-07-25Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)Bram Moolenaar
2010-07-24Add the 'undoreload' option to be able to undo a file reload.Bram Moolenaar
2010-07-23Add the 'concealcursor' option to decide when the cursor line is to beBram Moolenaar
concealed or not. Rename 'conc' to 'cole' as the short name for 'conceallevel'.
2010-07-19Rename w_p_conceal to w_p_conc for consistency.Bram Moolenaar
2010-07-17Added support for Python 3. (Roland Puntaier)Bram Moolenaar
2010-07-14Added Lua interfae. (Luis Carvalho)Bram Moolenaar
2010-07-14Missing piece for Mac console clipboard support. (Bjorn Winckler)Bram Moolenaar
2010-07-02Make updating text for conceal mode simpler. A few compiler warning fixes.Bram Moolenaar
2010-06-25Remove the old and not well supported GTK 1 code. (James Vega)Bram Moolenaar
2010-06-22Fix compiler warnings for shadowed variables. Make 'conceal' a long insteadBram Moolenaar
of int.
2010-06-21Crypt the swapfile.Bram Moolenaar
2010-05-28Don't execute some autocommands when v:dying is 2 or more.Bram Moolenaar
2010-05-24Fix uninit memory read in undo code. Fix uint32_t in proto file.Bram Moolenaar
A few minor changes.
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-05-22Included the patch to support netbeans in a terminal.Bram Moolenaar
2010-05-21Other solution for GTK not changing the locale.Bram Moolenaar
2010-05-16Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.Bram Moolenaar
2010-05-07updated for version 7.2.415Bram Moolenaar
Problem: Win32: Can't open a remote file when starting Vim. Solution: Don't invoke cygwin_conv_path() for URLs. (Tomoya Adachi)
2009-12-16updated for version 7.2-318Bram Moolenaar
2009-11-17updated for version 7.2-296Bram Moolenaar
2009-11-11updated for version 7.2-286Bram Moolenaar
2009-11-03updated for version 7.2-269Bram Moolenaar
2009-05-26updated for version 7.2-191Bram Moolenaar
2009-05-17updated for version 7.2-180Bram Moolenaar
2008-11-28updated for version 7.2-055Bram Moolenaar
2008-11-20updated for version 7.2-047Bram Moolenaar
2008-11-15updated for version 7.2-041Bram Moolenaar
2008-11-09updated for version 7.2-031Bram Moolenaar