aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | | | | | | Merge pull request #4586 from oni-link/fix.on.process.exitJustin M. Keyes2016-04-17
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | eval.c: Fix cut off of terminal exit message
| * | | | | | | | | | eval.c: Fix cut off of terminal exit messageoni-link2016-04-17
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The message array in on_process_exit() is too short for a status > 99.
* | | | | | | | | | Merge pull request #4579 from Shougo/lemonadeJustin M. Keyes2016-04-17
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | Add lemonade support for clipboard feature
| * | | | | | | | | clipboard: support "lemonade" toolShougo Matsushita2016-04-17
| |/ / / / / / / /
* | | | | | | | | Merge pull request #4583 from KillTheMule/robust-completionBjörn Linse2016-04-16
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Make completion_spec.lua more robust
| * | | | | | | | Make completion_spec.lua more robustKillTheMule2016-04-16
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having a tags file in the calling directory of make test would make this test fail, so disable tag file completion for it. Disable all other options except the current buffer, to, applying the principle of least surprise.
* | | | | | | | Merge pull request #4558 from justinmk/filetypeJustin M. Keyes2016-04-15
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | defaults: Enable syntax/filetype for real.
| * | | | | | | | test: defaults_spec.luaJustin M. Keyes2016-04-15
| | | | | | | | |
| * | | | | | | | test: move server_spec.luaJustin M. Keyes2016-04-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Old layout was too granular, we do not need a server/ folder.
| * | | | | | | | defaults: Enable syntax/filetype for real.Justin M. Keyes2016-04-15
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes a bug in #4252: we enabled filetype/syntax if -u was passed, but not otherwise. So it did not work for an empty or missing vimrc.
* | | | | | | | tests: fix indeterministic oldfiles! testBjörn Linse2016-04-14
| | | | | | | |
* | | | | | | | 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
|/ / / / / / / / / / /