aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* tests: update tests to use [gs]et_lines instead of [gs]et_line_sliceBjörn Linse2016-04-01
|
* api/buffer: add tests for buffer_[gs]et_linesBjörn Linse2016-04-01
|
* api/buffer: introduce buffer_[gs]et_lines with new indexing convention.Björn Linse2016-04-01
| | | | | | | -1 is index past the end, and -2 is the index of the last element. This eliminates the need for include_start/include_end. Allow the handling of out-of-bounds to be configurable.
* Merge PR #4492 'vim-patch:7.4.{1641,1643,1652,1654}'Thiago de Arruda2016-03-31
|\
| * vim-patch:7.4.1654James McCoy2016-03-30
| | | | | | | | | | | | | | Problem: Crash when using expand('%:S') in a buffer without a name. Solution: Don't set a NUL. (James McCoy, closes vim/vim#714) https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
| * vim-patch:7.4.1652James McCoy2016-03-30
| | | | | | | | | | | | | | Problem: Old style test for fnamemodify(). Solution: Turn it into a new style test. https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
| * vim-patch:7.4.1643James McCoy2016-03-30
| | | | | | | | | | | | | | Problem: Terminating file name has side effects. Solution: Restore the character. (mostly by James McCoy, closes vim/vim#713) https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
| * vim-patch:7.4.1641James McCoy2016-03-30
| | | | | | | | | | | | | | Problem: Using unterminated string. Solution: Add NUL before calling vim_strsave_shellescape(). (James McCoy) https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
* | Merge pull request #4510 from bfredl/termfixJustin M. Keyes2016-03-31
|\ \ | |/ |/| terminal.c: temporary fix for incorrect paste handling
| * terminal.c: temporary fix for incorrect paste handlingBjörn Linse2016-03-31
| |
* | Merge pull request #4441 from cacplate/pr-2842Felipe Oliveira Carvalho2016-03-29
|\ \ | |/ |/|
| * path.c: enable -WconversionCharles Joachim2016-03-27
|/
* Correctly reset qf_list_T in qf_free()Jun T2016-03-25
|
* Merge pull request #4480 from migueldvb/docsJustin M. Keyes2016-03-20
|\ | | | | doc: Update path to colors directory in syntax highlighting docs
| * Update path to colors directory in syntax highlighting docsMiguel de Val-Borro2016-03-20
|/
* Merge pull request #4461 from bfredl/pum_k_eventJustin M. Keyes2016-03-18
|\ | | | | K_EVENT should not hide the popupmenu
| * edit.c: K_EVENT should not hide the popupmenuBjörn Linse2016-03-17
| | | | | | | | Nor should K_FOCUSGAINED and K_FOCUSLOST.
* | Merge pull request #4456 from jamessan/sorted-globsJustin M. Keyes2016-03-18
|\ \ | | | | | | cmake: Create generated files in a consistent order
| * | cmake: Create generated files in a consistent orderJames McCoy2016-03-15
| |/
* | Merge pull request #4459 from fflorent/vim-7.4.1574Justin M. Keyes2016-03-18
|\ \ | | | | | | vim-patch:7.4.1574
| * | vim-patch:7.4.1574Florent FAYOLLE2016-03-18
|/ / | | | | | | | | | | | | Problem: ":undo 0" does not work. (Florent Fayolle) Solution: Make it undo all the way. (closes vim/vim#688) https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
* | Merge pull request #4431 from philix/memfile-cleanupsJustin M. Keyes2016-03-17
|\ \ | | | | | | Review of the memfile.c API and small refactorings
| * | Review of the memfile.c API and small refactoringsFelipe Oliveira Carvalho2016-03-16
| |/ | | | | | | | | | | | | | | | | - Create `mf_free_fnames()` that frees and nullifies `mf_[f]fname` - Create `mf_set_fnames()` to set the `mf_fname` and the `mf_ffname` altoghether - Have `mf_do_open` return a bool to indicate success so that calles don't have to check `memfile_T::mf_fd` (file descriptor) - Inline `mf_write_block`
* | Merge #4446Justin M. Keyes2016-03-17
|\ \ | |/ |/|
| * test: minor changesJustin M. Keyes2016-03-17
| |
| * 'shortmess': Add "F" flag. #4446Shougo Matsushita2016-03-17
|/ | | | | | | Add "Don't give the file editing message" flag in shortmess option. Add the UI tests by @fmoralesc Fix the changes for Vim 7.4.1570
* Merge pull request #4418 from bfredl/remove_script_hostBjörn Linse2016-03-15
|\ | | | | python: remove script_host.py that now is in neovim/python-client
| * python: move script_host.py to python-clientBjörn Linse2016-03-15
|/
* Merge pull request #4168 from noahfrederick/patch-1Justin M. Keyes2016-03-13
|\ | | | | man.vim: parse page names containing dash or dot
| * man.vim: prefer cmd-line to normal-mode commandsNoah Frederick2016-03-05
| |
| * man.vim: clean up regex/string comparisonsNoah Frederick2016-03-05
| | | | | | | | | | - Explicitly specify case sensitivity when comparing strings - Clean up unnecessarily complex `if` statements
| * man.vim: fixes to argument handling and parsingNoah Frederick2016-03-05
| | | | | | | | | | | | | | | | | | | | | | - Define a collection of legal characters when parsing page and section in `s:parse_page_and_section()` instead of relying on 'iskeyword', which is unreliable. - Allow non-numeric section names (e.g., `3c`). - Simplify argument handling in `man#get_page()` to accommodate non-numeric section names. Fixes #4165.
* | Merge pull request #4440 from djrenren/nvim-in-macrosJustin M. Keyes2016-03-11
|\ \ | | | | | | Replace vim with nvim in macros
| * | runtime/macros: replace "vim" with "nvim"John Renner2016-03-11
|/ /
* | Merge pull request #4410 from alexgenco/ruby_rpluginJustin M. Keyes2016-03-11
|\ \ | | | | | | Ruby remote plugin support
| * | Ruby remote plugin supportAlex Genco2016-03-10
| | |
* | | Merge pull request #4438 from bfredl/pyfindpackageBjörn Linse2016-03-11
|\ \ \ | | | | | | | | rplugin: let the python host identify packages
| * | | rplugin: let the python host identify packagesBjörn Linse2016-03-11
|/ / /
* | | rplugin: Silence :doautocmd. #4384Justin M. Keyes2016-03-11
| | |
* | | quickfix.c: enable -WconversionCharles Joachim2016-03-10
|/ /
* | rplugin: Initialize remote plugins lazily. #4384Shougo Matsushita2016-03-10
| |
* | Merge pull request #2877 from lucc/test88Justin M. Keyes2016-03-10
|\ \ | | | | | | test: Migrate legacy test 88.
| * | tests: Update migrated legacy test 88 for patch 7.4.639.Lucas Hoffmann2016-03-09
| | | | | | | | | | | | The patch was merged into master at d25a59f4.
| * | tests: Modernize legacy test 88.Lucas Hoffmann2016-03-09
| | |
| * | tests: Migrate legacy test 88.Lucas Hoffmann2016-03-09
| | |
* | | build: Specify old behavior for POLICY CMP0059.Justin M. Keyes2016-03-09
| | | | | | | | | | | | | | | | | | | | | | | | This is needed as long as we support cmake older than 2.8.12. When we bump the minimum version to 2.8.12, we can use target_compile_options() and add_compile_options() instead. Closes #4389
* | | Merge pull request #4409 from nhooyr/masterJustin M. Keyes2016-03-09
|\ \ \ | |/ / |/| | complete: disable folding when completing
| * | complete: disable folding when completingAnmol Sethi2016-03-09
| | | | | | | | | | | | Fixes vim/vim#643
* | | Merge pull request #4427 from nicdumz/vim-7.4.1511Justin M. Keyes2016-03-09
|\ \ \ | |/ / |/| | vim-patch:7.4.1511
| * | vim-patch:7.4.1511Nicolas Dumazet2016-03-08
|/ / | | | | | | | | | | | | Problem: Statusline highlighting is sometimes wrong. Solution: Check for Highlight type. (Christian Brabandt) https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2