aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | CMake: Don't use existing third-party sources by default.Florian Walch2015-09-09
|/ / | | | | | | | | | | | | | | Introduce ALLOW_EXISTING_SRC_DIR option, turned off by default. The Homebrew formula, which downloads and extracts the third-party dependency sources before starting the build, would turn this option ON.
* | Merge pull request #3298 from oni-link/vim-7.4.609Justin M. Keyes2015-09-09
|\ \ | | | | | | vim-patch:7.4.609
| * | vim-patch:7.4.609oni-link2015-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: For complicated list and dict use the garbage collector can run out of stack space. Solution: Use a stack of dicts and lists to be marked, thus making it iterative instead of recursive. (Ben Fritz) https://github.com/vim/vim/commit/2459a5ecaa43c8549ea53e9364253ff891676da5
* | | Merge pull request #3308 from oni-link/fix.clang.reportJustin M. Keyes2015-09-09
|\ \ \ | | | | | | | | Fix warning: stream.c: stream_init(): Dead store: HI.
| * | | Fix warning: stream.c: stream_init(): Dead store: HI.oni-link2015-09-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem : Dead store @ 59. Diagnostic : Harmless issue. Rationale : loop is a function parameter that is not used anymore after this line. Resolution : Remove line. Based on: http://neovim.io/doc/reports/clang/report-27475f.html#EndPath
* | | | Merge pull request #3317 from fwalch/cmake/git-lookupJustin M. Keyes2015-09-09
|\ \ \ \ | | | | | | | | | | CMake: Use project directory to look for Git revision.
| * | | | CMake: Use project directory to look for Git revision.Florian Walch2015-09-08
| |/ / / | | | | | | | | | | | | | | | | | | | | If downloading Neovim as a tarball (i.e. without Git data), building Neovim will search parent directories for a .git directory. Explicitly set GIT_DIR to the project directory to avoid that.
* | | | api: buffer_insert: fix bounds. #3315Enrico Ghirardi2015-09-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | buffer_insert calls buffer_set_line_slice excluding the start line number and including the end, but it should be the opposite. Closes https://github.com/neovim/neovim/issues/3212 Closes https://github.com/neovim/python-client/issues/103
* | | | doc: 'encoding'Justin M. Keyes2015-09-09
| | | |
* | | | Merge #2929 'Disallow "set encoding" after startup'Justin M. Keyes2015-09-08
|\ \ \ \ | |/ / / |/| | |
| * | | encoding: test that `&encoding` cannot be changedBjörn Linse2015-09-08
| | | | | | | | | | | | | | | | Helped-By: Justin M. Keyes <justinkz@gmail.com>
| * | | encoding: Update handling of encoding in testsBjörn Linse2015-09-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Always run tests with encoding=utf-8, regardless of user locale Don't set &encoding after startup in tests Helped-By: Michael Reed <m.reed@mykolab.com>
| * | | encoding: update docs for encodingBjörn Linse2015-09-08
| | | | | | | | | | | | | | | | | | | | Helped-By: Michael Reed <m.reed@mykolab.com> Helped-By: Justin M. Keyes <justinkz@gmail.com>
| * | | encoding: simplify handling of encoding in TUIBjörn Linse2015-09-08
| | | |
| * | | encoding: don't allow changing encoding after startup scriptsBjörn Linse2015-09-08
|/ / /
* | | Windows: disable libuv argument escaping for uv_spawn #3305Rui Abreu Ferreira2015-09-08
| | | | | | | | | | | | | | | | | | When calling uv_spawn to launch a process set the libuv process flag UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS to disable escaping for the arguments otherwise libuv will wrap arguments in quotes.
* | | MSVC: Fix declaration generation. #3301Rui Abreu Ferreira2015-09-07
|/ /
* | Merge PR #3246 'Run builtin TUI in a another thread'Thiago de Arruda2015-09-07
|\ \ | |/ |/|
| * tui: Refactor for running in another threadThiago de Arruda2015-09-06
| |
| * ui: Implement module for thread-safe communication with UThiago de Arruda2015-09-06
| | | | | | | | | | The ui_bridge.c module implements a surrogate UI that forwards calls to another thread.
| * loop: Improvements for thread-safetyThiago de Arruda2015-09-06
| | | | | | | | | | | | - Implement `loop_schedule` method for queueing events from other threads - Make `loop_poll_events` `recursive` static variable a field of the Loop structure
| * queue: Allow direct appending to parent queuesThiago de Arruda2015-09-06
| |
| * log: Make logging thread-safeThiago de Arruda2015-09-06
| |
| * build: Disable gcov on TSAN buildsThiago de Arruda2015-09-06
| | | | | | | | It seems GCOV does not play well with TSAN as it reports false data races
| * travis: Enable TSAN for sanity checking the terminal UIThiago de Arruda2015-09-06
| |
| * contrib: Implement gdb pretty printer for UGridThiago de Arruda2015-09-06
| |
| * tui: Move screen state tracking to new "ugrid" moduleThiago de Arruda2015-09-06
| | | | | | | | | | The ugrid module implements a unicode "drawing" grid and is used to store TUI screen state. Later this module will be reused in other layers.
| * tui: move term_input.inl into the input.c moduleThiago de Arruda2015-09-06
|/
* Merge pull request #3288 from oni-link/vim-7.4.602oni-link2015-09-06
|\ | | | | | | | | | | | | | | vim-patch:7.4.602 #3288 Problem: ":set" does not accept hex numbers as documented. Solution: Use vim_str2nr(). (ZyX) https://github.com/vim/vim/commit/18400e6430755c97eb7e31525ab4744502603731
| * vim-patch:7.4.602oni-link2015-09-06
|/ | | | | | | Problem: ":set" does not accept hex numbers as documented. Solution: Use vim_str2nr(). (ZyX) https://github.com/vim/vim/commit/18400e6430755c97eb7e31525ab4744502603731
* MSVC: Include limits.h for INT_MAX. #3290Rui Abreu Ferreira2015-09-05
|
* do_path_expand: Avoid non-readable directories. #3273Felipe Morales2015-09-04
| | | | | | | | | | Closes https://github.com/neovim/neovim/issues/3164 Closes https://github.com/neovim/neovim/issues/3194 Closes https://github.com/neovim/neovim/issues/3221 Helped-by: @splinterofchaos Helped-by: @oni-link Helped-by: @justinmk
* Merge "Remove instances of TRUE/FALSE" #3272Björn Linse2015-09-04
|\
| * fixup: appease clintFelipe Morales2015-09-04
| |
| * Remove instances of TRUE/FALSE macroSteven Oliver2015-09-04
|/ | | | | | memory.c os_unix.c path.c
* Update to libuv 1.7.3 #3274Justin M. Keyes2015-09-01
|
* doc: fix some typos in nvim docs #3280Aaron O'Leary2015-09-01
| | | | Reviewed-by: Michael Reed <Pyrohh@users.noreply.github.com>
* MSCV: FindLibUV: fix libname. #3261Rui Abreu Ferreira2015-08-31
|
* Windows: FindLuaJit: fix libname. #3262Rui Abreu Ferreira2015-08-31
|
* Windows: Move file_info_old declaration out of UNIX block #3260Rui Abreu Ferreira2015-08-31
|
* runtime: `::` token is valid in C#. #3144Jerome Leclanche2015-08-31
| | | | https://msdn.microsoft.com/en-us/library/c3ay4x3d.aspx
* runtime: fix for python highlighting #3154Victor Adam2015-08-31
| | | | | | | """\"""" was highlighted incorrectly. The fix is simply adding skip=+\\["']+ to the syntax of triple-quoted strings. Closes #3151
* MSVC: Don't use GCC -O/-g flags. #3267Rui Abreu Ferreira2015-08-31
|
* clipboard: avoid clipboard during :global. #2809Felipe Morales2015-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is equivalent to patches 7.4.396, 7.4.445 and 7.4.598. vim-patch:7.4.396 Problem: When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful) Solution: Only set the clipboard after the last delete. (Christian Brabandt) https://github.com/vim/vim/commit/1f285eb49a709e00552f7bef7e74efff5ae79026 vim-patch:7.4.445 Problem: Clipboard may be cleared on startup. Solution: Set clip_did_set_selection to -1 during startup. (Christian Brabandt) https://github.com/vim/vim/commit/1a19d37d90f037c09183ba68fdddf70ab8ee179a vim-patch:7.4.598 Problem: ":tabdo windo echo 'hi'" causes "* register not to be changed. (Salman Halim) Solution: Change how clip_did_set_selection is used and add clipboard_needs_update and global_change_count. (Christian Brabandt) https://github.com/vim/vim/commit/af6a579263a688f30bfbbee72b28d08cc7e0f3d4 Co-Author: @bfredl
* doc: termopen(): remove 'name' feature.Justin M. Keyes2015-08-30
|
* termopen(): remove `name` feature. #3181Mathieu Xhonneux2015-08-30
| | | | | | | | | | | Problem: Commands like `:e term://top` display `term://.//PID:(null)` instead of `term://.//PID:top`. Solution: Remove the optional `name` argument (it allowed ambiguous/potentially destructive cases, so it was problematic anyway). Closes #3113 Closes #2924
* Windows: Define USE_CRNL on Windows. #3249Seth Jackson2015-08-28
|
* Windows: restore 'shell', 'shellcmdflags' defaults. #3256Rui Abreu Ferreira2015-08-28
| | | | | - On Windows the default shell is cmd.exe and the shell flag is /c - vim-patch:0
* vim-patch.sh: best-effort for older git.Justin M. Keyes2015-08-27
|
* vim-patch.sh: get all untagged patches #3250Justin Gassner2015-08-27
|