aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | | Implement `os_mkdtemp` on top of `uv_fs_mkdtemp`Pavel Platto2014-08-09
|/ / /
* | | Merge pull request #985 from fwalch/clang-analyzer-dead-assignmentsJustin M. Keyes2014-08-08
|\ \ \ | | | | | | | | Clang analyzer: fix dead stores / reduce scope
| * | | clang-analyzer: Fix dead stores in garray.c.Florian Walch2014-08-07
| | | |
| * | | clang-analyzer: Reduce scope in syntax.c.Florian Walch2014-08-07
| | | |
| * | | clang-analyzer: Reduce scope in arabic.c.Florian Walch2014-08-07
| | | |
| * | | clang-analyzer: Reduce scope in search.c.Florian Walch2014-08-07
| | | |
| * | | clang-analyzer: Reduce scope in screen.c.Florian Walch2014-08-07
| | | |
| * | | clang-analyzer: Reduce scope in spell.c.Florian Walch2014-08-07
| | | |
| * | | clang-analyzer: Fix dead stores in window.c.Florian Walch2014-08-07
| | | |
* | | | Merge #1046 'Refactor travis script'John Szakmeister2014-08-08
|\ \ \ \
| * | | | Travis CI: Refactor travis scriptThiago de Arruda2014-08-08
|/ / / / | | | | | | | | | | | | | | | | | | | | To simplify modification/inclusion of continuous integration targets, this removes travis.sh which contains a big if statement in favor of multiple scripts under the new '.ci' directory.
* | | | vim-patch:7.4.323 #967André Twupack2014-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Substitute() with zero width pattern breaks multi-byte character. Solution: Take multi-byte character size into account. (Yukihiro Nakadaira) https://code.google.com/p/vim/source/detail?r=238f5027830cad22e17a970483af9b160869cdf3
* | | | Merge pull request #920 'Add `feedkeys` API function part 2'Thiago de Arruda2014-08-07
|\ \ \ \
| * | | | Add API vim_replace_termcodesRui Abreu Ferreira2014-08-07
| | | | | | | | | | | | | | | | | | | | - Add API function to call replace_termcodes
| * | | | Refactor vim_feedkeys and f_feedkeysRui Abreu Ferreira2014-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - To clean up the mix between feedkeys and replace_termcodes the vim_feedkeys API function now does the same thing as the vimscript feedkeys() function - The original f_feedkeys() function now calls the vim_feedkeys() function from the API
| * | | | Add helper cstr_as_string()Rui Abreu Ferreira2014-08-07
|/ / / / | | | | | | | | | | | | - Add nocopy helper alternative to cstr_to_string
* | | | Merge PR #1047 'Update libuv to 0.11.28'Thiago de Arruda2014-08-07
|\ \ \ \ | |/ / / |/| | |
| * | | dependencies: Update to libuv 0.11.28Thiago de Arruda2014-08-07
|/ / /
* | | Merge #814 'Remove dead #ifdefed code'Justin M. Keyes2014-08-07
|\ \ \
| * | | Remove fix for select(). select() is not used anymore.Pavel Platto2014-08-02
| | | |
| * | | Remove SMALL_MALLOC. Used on MSDOS and WIN16.Pavel Platto2014-08-02
| | | |
| * | | Remove __MVS__ and MOTIF390_MNEMONIC_FIXEDPavel Platto2014-08-02
| | | |
| * | | Remove HAVE_LIBC_HPavel Platto2014-08-02
| | | | | | | | | | | | | | | | It was used in Vim for NeXT OS.
| * | | Remove HAVE_TOTAL_MEMPavel Platto2014-08-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | libuv provide uv_get_total_mem_kib. So HAVE_TOTAL_MEM should always be true. Before that commit in neovim maxmem=5120 and maxmemtot=10240. Now both equal to half of system memory.
| * | | Remove FEAT_TAG_ANYWHITEPavel Platto2014-08-02
| | | | | | | | | | | | | | | | | | | | | | | | This feature allow to use any white space characters instead of one <TAB> in tag files. It is disabled in vanilla Vim's default build configuration. Exuberant ctags use format with exactly one TAB.
| * | | Remove FEAT_OSFILETYPEPavel Platto2014-08-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Feature description from Vim documentation: NOTE: this code is currently disabled, as the RISC OS implementation was removed. In the future this will use the 'filetype' option. On operating systems which support storing a file type with the file, you can specify that an autocommand should only be executed if the file is of a certain type. The actual type checking depends on which platform you are running Vim on; see your system's documentation for details. To use osfiletype checking in an autocommand you should put a list of types to match in angle brackets in place of a pattern, like this: > :au BufRead *.html,<&faf;HTML> runtime! syntax/html.vim This will match: - Any file whose name ends in ".html" - Any file whose type is "&faf" or "HTML", where the meaning of these types depends on which version of Vim you are using. Unknown types are considered NOT to match.
| * | | Remove EBCDIC: Remove IF_EB macrosPavel Platto2014-08-02
| | | |
| * | | Remove EBCDIC: remove last #ifdef EBCDICPavel Platto2014-08-02
| | | |
| * | | Remove EBCDIC: Clean up commentsPavel Platto2014-08-02
| | | |
| * | | Remove DONT_ADD_PATHSEP_TO_DIR used only in legacy MacPavel Platto2014-08-02
| | | |
| * | | Show +cursorshape in :versionPavel Platto2014-08-02
| | | | | | | | | | | | | | | | | | | | All code which was inside #ifdef CURSOR_SHAPE is being used now, except one in version.c (that occurence is fixed by this commit).
| * | | Remove BEOS_PR_OR_BETTERPavel Platto2014-08-02
| | | |
| * | | Remove BeOS DR8 specific hackPavel Platto2014-08-02
| | |/ | |/| | | | | | | It is already partially removed from screen.c
* | | Use color_terminal output in place of TAP #995ZyX2014-08-07
| | |
* | | Remove unused USE_TERM_CONSOLE ifdefs #1015Fredrik Fornwall2014-08-07
| | | | | | | | | | | | This is unused after dropped amiga and msdos support.
* | | documentation: update documentation for :mode #1009Stefan Hoffmann2014-08-07
| | | | | | | | | | | | see #588
* | | Drop SGI IRIS support. #1006Fredrik Fornwall2014-08-07
| | |
* | | Return bool from find_win_for_buf #1023Wayne Rowcliffe2014-08-07
| | |
* | | Merge PR #1040 'Fix segfault caused by default value of ipy/icpb options'Thiago de Arruda2014-08-06
|\ \ \
| * | | bugfix: set empty string as default for ipy/icpb to avoid segfaultThiago de Arruda2014-08-06
|/ / / | | | | | | | | | Fixes #1039
* | | Merge pull request #1038 '[RDY] Update APT package sources in travis.sh.'Thiago de Arruda2014-08-06
|\ \ \
| * | | travis.sh: Update sources before installing packages.Florian Walch2014-08-06
|/ / /
* | / Update README.mdJustin M. Keyes2014-08-05
| |/ |/| | | sweet clang analysis badge thanks to @Hinidu!
* | vim-patch:7.4.315 #1021André Twupack2014-08-03
|/ | | | | | | Problem: Fixes for computation of topline not tested. Solution: Add test. (Hirohito Higashi) https://code.google.com/p/vim/source/detail?r=646616b6ff4defcc7bef0b198b540f6d965a8126
* Partial C99 cleanup of term.c #1020Fredrik Fornwall2014-08-01
|
* Update luarocks. #1018Florian Walch2014-08-01
| | | | Fix #1013.
* vim-patch:7.4.309 #843Will Stamper2014-07-31
| | | | | | | | Problem: When increasing the size of the lower window, the upper window jumps back to the top. (Ron Aaron) Solution: Change setting the topline. (Nobuhiro Takasaki) https://code.google.com/p/vim/source/detail?r=88a6e9f33822d33b6c32db578750c6c178c63f50
* Merge pull request #1005 '[RFC] Change vimdir path from vim to nvim'Thiago de Arruda2014-07-31
|\
| * Add install target for runtime dirRui Abreu Ferreira2014-07-31
| |
| * Change vimdir path from vim to neovimRui Abreu Ferreira2014-07-31
|/