aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | | | | Merge pull request #4566 from ZyX-I/more-lintJustin M. Keyes2016-04-13
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add more lint checks: space before asterisk and preincrement/predecrement
| * | | | | | | | clint: Add rule for preincrement/predecrementZyX2016-04-13
| | | | | | | | |
| * | | | | | | | clint: Add diagnostics for things like `char* foo` or `(char*)`ZyX2016-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Asterisk should be preceded by a space except the following cases: 1. `foo[*idx_ptr]` 2. `++*foo` (though I would prefer to write this as `++(*foo)`) 3. `(*foo)->bar`, `if (*p)` 4. `char **foo` 5. `/* comment */` 6. `!*p` Note: `[^ (*/![]` is followed by `+` to make error position easier to find. It is not needed to find location of the problem.
* | | | | | | | | Merge PR #4398 'Update lua client'Thiago de Arruda2016-04-13
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | |
| * | | | | | | | Update lua client to 0.0.1-24Thiago de Arruda2016-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new version of the lua client uses libmpack as a backend, and some test scripts had to be updated to reflect that.
| * | | | | | | | third-party: Add missing *_host dependencies to luarocks packagesThiago de Arruda2016-04-11
| | | | | | | | |
| * | | | | | | | Add luv as a third party dependencyThiago de Arruda2016-04-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Luv is a simple lua binding to libuv, which is now used by neovim lua client. The bundled luv installation a bit different from other dependencies in that it is installed two times: - The "BuildLuv.cmake" script downloads and installs a static version of luv using its normal cmake build script. This static version will be used later. - Luv default rockspec is replaced with the alternate under the "rockspecs" directory(the alternate rockspec plays nicer with neovim build system) - The alternate rockspec is used to build/install the lua module and make it available to lua scripts.
| * | | | | | | | Mark cursor_spec.lua indeterministic test as pendingThiago de Arruda2016-04-11
| | | | | | | | |
| * | | | | | | | Remove indeterminism in oldfiles_spec.luaThiago de Arruda2016-04-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If Nvim is in a "Press ENTER..." screen before the `get_vvar()` call, the test will hang.
| * | | | | | | | Allow a lua debugger to be specified on `functionaltest-lua` targetThiago de Arruda2016-04-11
| | | | | | | | |
| * | | | | | | | Synchronize shada reset helper with other functional testsThiago de Arruda2016-04-11
| | | | | | | | |
| * | | | | | | | main.c: Free msgpack packer in --api-info handler to make ASAN happyThiago de Arruda2016-04-11
|/ / / / / / / /
* | | | | | | | Merge pull request #4562 from dbarnett/vim-f2571cJustin M. Keyes2016-04-11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | vim-patch:f2571c
| * | | | | | | | vim-patch:f2571cDavid Barnett2016-04-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/f2571c61d5aa05682ae4d358e625348b61adc861
* | | | | | | | | Merge pull request #4559 from ZyX-I/undodir-undo-doc-updateJustin M. Keyes2016-04-11
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | documentation: Update information about default location of undo files
| * | | | | | | | | documentation: Update information about default location of undo filesZyX2016-04-11
| | | | | | | | | |
* | | | | | | | | | Merge pull request #4557 from mikewadsten/bugfix/issue-4537-cscope-segfaultJustin M. Keyes2016-04-10
|\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / |/| | | | | | | | | cscope: Fix mismatched types in ':cscope show' output
| * | | | | | | | | cscope: Fix mismatched types in ':cscope show' outputMike Wadsten2016-04-10
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Type long on 32-bit systems is typically 32 bits, but PRId64 is 64 bits. This mismatch leads to bad output or segfaults on :cs show. Fixes #4537
* | | | | | | | | Merge pull request #4555 from justinmk/spellJustin M. Keyes2016-04-10
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | spell: fix SpellFileMissing handler
| * | | | | | | | | spell: Fix argument and avoid redundant prompt.Justin M. Keyes2016-04-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In #3027 we deferred the "missing spell file" prompt until VimEnter, but we were sending the wrong argument (should be "en", not "en_us"). This also caused redundant prompts if user answers "No" to the download prompt invoked by the SpellFileMissing event. Closes #3966 Closes #4406
| * | | | | | | | | spellfile.vim: less pesteringJustin M. Keyes2016-04-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Always auto-create spell/ directory, don't ask. - Don't ask where to put .spl file if only 1 choice exists. - Always download .sug file, don't ask. - Use blackhole register for :delete and :g//d. - Formatting: expand tabs.
* | | | | | | | | | Merge pull request #4505 from watiko/vim-runtimesJustin M. Keyes2016-04-10
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | vim-patch:86ae720,f913281,dd1616e
| * | | | | | | | | vim-patch:dd1616ewatiko2016-03-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Correct optwin script, update PHP complete. https://github.com/vim/vim/commit/dd1616e6cedf798a5e6db3bf8cec1fc79a0481d0
| * | | | | | | | | vim-patch:f913281watiko2016-03-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated and new runtime files. https://github.com/vim/vim/commit/f91328100db34996ed7e7a800bed0a30ff0890dd
| * | | | | | | | | vim-patch:86ae720watiko2016-03-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/86ae720d7567fcbbe40f00cf136c797953f21038
* | | | | | | | | | Merge pull request #4357 from jbradaric/vim-7.4.1105Justin M. Keyes2016-04-09
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | vim-patch:7.4.1105
| * | | | | | | | | | eval: Update documentation.Jurica Bradaric2016-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extracted from vim-patch:da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
| * | | | | | | | | | eval: Fix linter error.Jurica Bradaric2016-02-27
| | | | | | | | | | |
| * | | | | | | | | | vim-patch:7.4.1105Jurica Bradaric2016-02-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: When using slices there is a mixup of variable name and namespace. Solution: Recognize variables that can't be a namespace. (Hirohito Higashi) https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
* | | | | | | | | | | complete: noinsert/noselect should not set 'modified'. #4509Shougo Matsushita2016-04-09
| | | | | | | | | | |
* | | | | | | | | | | doc: formatting #4543Chiel Kooijman2016-04-08
| | | | | | | | | | |
* | | | | | | | | | | doc: Fix tiny typo in :bufdo sectionPanashe Fundira2016-04-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | | | | Merge pull request #4546 from KillTheMule/vim-patch-shJustin M. Keyes2016-04-08
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | vim-patch.sh: Fetch the whole vim repository and fix a regexp
| * | | | | | | | | | | vim-patch.sh: Fetch the whole vim repository and fix a regexppips.linux2016-04-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make get_vim_sources fetch the whole repository (it's not THAT big) so we can pick up all the patches. The regexp didn't pick up the NA patches if there was a comma after NA, so I extended it (I allowed arbitray things after NA, so maybe someone can write a comment or so, should not lead to confusion).
* | | | | | | | | | | | version bumpJustin M. Keyes2016-04-08
| | | | | | | | | | | |
* | | | | | | | | | | | NVIM v0.1.3v0.1.3Justin M. Keyes2016-04-07
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Features: f2ae5a9 Add TextYankPost and TextDeletePost autocmds 44b2cef bufhl: new mechanism for plugins to add highlights to a buffer 39c3842 Make set{qf,loc}list() take {title} 77a7ca4 'shortmess': Add "F" flag. #4446 99d4c8c keymap: Support <D-...> (super/command key). Fixes: 14c9b30 terminal.c: temporary fix for incorrect paste handling Notable changes: 50e129f defaults: Enable syntax and filetype plugins. 4e39eee upgrade libvterm (improves terminal reflow)
* | | | | | | | | | | Update ISSUE_TEMPLATE.mdJustin M. Keyes2016-04-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | | | | Merge pull request #4477 from Antoine-H/masterBjörn Linse2016-04-06
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fixed some Wconversion in charset.c
| * | | | | | | | | | | Enabled -Wconversion in charset.chuchet2016-04-06
|/ / / / / / / / / / /
* | | | | | | | | | | Merge pull request #4269 from cacplate/pr-3667Björn Linse2016-04-04
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | | buffer.c: change return type to bool (adoption of #3667)
| * | | | | | | | | | buffer.c: change return type to boolCharles Joachim2016-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Wayne Rowcliffe (@war1025)
* | | | | | | | | | | Merge pull request #4508 from Xerkus/hotfix/remote-plugins-wrong-conditionJustin M. Keyes2016-04-03
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | | Fix condition for lazy loading remote plugins defintions
| * | | | | | | | | | rplugin: Fix wrong condition for lazy loading remote pluginsAleksei Khudiakov2016-03-31
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #4519 from Shougo/vim-7.4.1425Felipe Morales2016-04-02
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | vim-patch:7.4.1425
| * | | | | | | | | | | vim-patch:7.4.1425Shougo Matsushita2016-04-02
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: There are still references to MS-DOS support. Solution: Remove most of the help txt and install instructions. (Ken Takata) https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
* | | | | | | | | | | Merge pull request #4083 from bfredl/oobBjörn Linse2016-04-01
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | api/buffer: add get/set_lines with more flexible out-of-bounds handling and deprecate the line_slice functions
| * | | | | | | | | | | api/buffer: deprecate old line and line slice functionsBjörn Linse2016-04-01
| | | | | | | | | | | |
| * | | | | | | | | | | 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.