aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * api: vim_err_write: don't wait for return in the middle of a messageBjörn Linse2015-09-16
|/
* loop: Free the parent queue last when destroying the loopThiago de Arruda2015-09-16
| | | | This avoids a heap-use-after-free ASAN error. Close #3334
* host.vim: expand $MYVIMRC. #3342Jonathan Skeate2015-09-14
| | | | | | | | | | | | According to the vim helpfile: > fnamemodify({fname}, {mods}) > ... > Note: Environment variables don't work in {fname}, use > expand() first then. So this causes issues if your $MYVIMRC contains environment variables (e.g. $XDG_CONFIG_HOME)
* Merge pull request #3331 from yagebu/python-no-cwd-importJustin M. Keyes2015-09-14
|\ | | | | python: remove current working directory from path
| * python: remove current working directory from pathJakob Schnitzer2015-09-14
|/ | | | | | | | | | Before, running Nvim in a directory containing a Python module `neovim`, or one that is imported by it or a plugin, will load that module and not the system one. So Nvim might be tricked into running arbitrary scripts from the current working directory. Fixes #1665 Fixes #2530
* remove HAVE_DUP #1072Justin M. Keyes2015-09-12
| | | | | Vim defines this for Windows, so there's no Neovim-supported system for which this would not be defined.
* term: Do not highlight bold text by default. #3333Enrico Ghirardi2015-09-12
| | | | | It makes more sense to let the user application terminal emulator decide how to render bold text.
* Merge pull request #3322 from oni-link/fix.memory.leak.2Justin M. Keyes2015-09-10
|\ | | | | path.c: Fix memory leak in expand_wildcards().
| * path.c: Fix memory leak in expand_wildcards().oni-link2015-09-09
| | | | | | | | | | | | A file that matches with one of the patterns in 'wildignore' is ignored when using expand_wildcards(). After removing ignored files, the array of (file name) matches can be empty. But an empty array is never freed.
* | test: update lua client to 0.0.1-14Justin M. Keyes2015-09-10
| |
* | test: update lua client to 0.0.1-13 #3281Justin M. Keyes2015-09-10
| |
* | Windows: Only link against libm, libutil on Unix. #3324Rui Abreu Ferreira2015-09-10
| |
* | runtime: remove dvorak macro #3325Justin M. Keyes2015-09-10
| | | | | | | | | | This macro does the same thing as `set keymap=dvorak`, so it serves no purpose.
* | Merge #3297 'move.c refactor'Justin M. Keyes2015-09-10
|\ \
| * | Scope variables in move.cNicolas Cornu2015-09-08
| | |
| * | Replace TRUE/FALSE with true/false in move.cNicolas Cornu2015-09-08
| | |
| * | hasFolding return bool nowNicolas Cornu2015-09-08
| | |
| * | hasFoldingWin now return boolNicolas Cornu2015-09-08
| | |
| * | win_T.w_cline_folded from int to boolNicolas Cornu2015-09-07
| | |
* | | Windows: Link against libraries libuv needs on Windows.Rui Abreu Ferreira2015-09-09
| | |
* | | Merge #3307 'Travis: Rebuild third-party deps when updated'.Florian Walch2015-09-09
|\ \ \ | |_|/ |/| |
| * | deps: Update unibilium to 1.2.0.Florian Walch2015-09-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes since 1.1.4 (from [1]): 1.1.5 2015-07-17: - doc/unibi_{get,set}_ext_*_name: Fix man's “can't break line” warnings - Merge pull request #12 from Debian/manpage-warnings - fix variable name parsing in %g/%P (gh #14) 1.1.6 2015-07-23: - neatify formatting - factor out TAP pseudo-library - regenerate static tests - add screen-256color sanity test - make ok() accept printf varargs - regenerate static tests - mark test functions as potentially unused - more test stuff - use note for annotations instead of diag - regenerate static tests - fix nested conditionals - add ansi-pfkey test because why not 1.2.0 2015-08-14: - add helper functions for unibi_var_t manipulation - document semantics of zero-initializing unibi_var_t [1] https://github.com/mauke/unibilium/compare/v1.1.4...v1.2.0
| * | Travis: Cache third-party build directory.Florian Walch2015-09-09
| | | | | | | | | | | | | | | | | | Instead of just caching the third-party build output, cache the full build directory. Always run make to ensure that updated dependencies are downloaded.
| * | 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.