aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* healthcheck: python: prefer neovim.VERSIONDaniel Hahler2017-01-08
|
* healthcheck: python: include nvim path for unknown/outdated versionDaniel Hahler2017-01-08
| | | | | | | This helps to identify where the `neovim` module is coming from, e.g. - INFO: python3-neovim version: 0.1.10 (outdated; from ~/Vcs/neovim-python-client/neovim) - WARNING: Latest python3-neovim is NOT installed: 0.1.12
* Improve error reporting for Python health checkDaniel Hahler2017-01-08
| | | | | | | - s:version_info: return errors from the `import` - skip report_ok for latest version, in case the current version was not found. status contains the error that has been reported in that case already.
* s:check_python: handle 'pip install --user -e'Daniel Hahler2017-01-08
|
* health: Windows: Handle backslash path separators. (#5914)Justin M. Keyes2017-01-08
| | | | | | | * health: Handle backslash path separators. * health: brevity, consistency * health: Do not set bufhidden=wipe. In the context of CheckHealth, bufhidden=wipe loses data for no reason.
* Merge #5909 from justinmk/win32-xdgJustin M. Keyes2017-01-08
|\ | | | | Windows: fix XDG fallback paths
| * test: Windows: Re-enable shada functional testsRui Abreu Ferreira2017-01-08
| | | | | | | | | | One of the tests remains disabled until we figure out the expected behaviour of mkdir() on Windows when `prot` is passed.
| * XDG: Windows: resolve $LOCALAPPDATA, $TEMP (#5278)Rui Abreu Ferreira2017-01-08
|/ | | | | | | | | | After #4964 environment variables in the XDG "fallback" table are no longer expanded. Fallback to correctly expanded $LOCALAPPDATA, $TEMP. If that fails (unlikely), fallback to hard-coded paths (e.g. ~/AppData/Local). Closes #5255
* ruby: old versions don't know `gem list -e`Marco Hinz2017-01-08
|
* Merge #5079 from ZyX-I/shada-save-current-posJustin M. Keyes2017-01-07
|\ | | | | shada: Save current cursor position before saving jumps
| * clint: Add more exceptions to “space after a cast” ruleZyX2017-01-06
| | | | | | | | Python does not allow branching here, complaining that look-behind is not fixed-width.
| * shada: Mark ALWAYS_INLINE function as `inline`ZyX2017-01-06
| |
| * shada: Move setpcmark()/cleanup_jumplist() out of the cycleZyX2017-01-04
| |
| * shada: Fix offset savingZyX2017-01-04
| |
| * shada: Silence linterZyX2017-01-04
| |
| * shada: Save current cursor position before saving jumpsZyX2017-01-04
| |
* | Merge #5903 from ZyX-I/fix-5901Justin M. Keyes2017-01-07
|\ \ | | | | | | Reset copyID also when dictionary is referenced
| * | unittest: Fix linter errorsZyX2017-01-07
| | |
| * | unittest,memory: Fix testsZyX2017-01-07
| | |
| * | memory: Document new additions to memory.hZyX2017-01-07
| | |
| * | memory: Restore entered_free_all_mem functionalityZyX2017-01-07
| | |
| * | eval: Fix failing testZyX2017-01-07
| | |
| * | unittest: Add failing test for freeing dictionaries in a listZyX2017-01-07
| | |
| * | unittest: Add dict_items functionZyX2017-01-07
| | |
| * | eval: Make sure that copyID is reset when neededZyX2017-01-07
| | | | | | | | | | | | | | | Works by making value pushed on stack represent the exhausted list. Fixes #5901, except for dictionaries which need similar adjustment.
| * | eval/typval_encode.h: Use only a single macros with _INNER[_2] hackZyX2017-01-07
| | |
| * | unittest: Add failing test of freeing listsZyX2017-01-07
| | |
| * | unittest: Allow mocking allocator callsZyX2017-01-07
| | |
* | | health: refactor s:check_ruby()Marco Hinz2017-01-07
|/ / | | | | | | | | | | | | | | | | | | | | I gone through every single line, renamed the variables to be more consistent and reordered many lines. Information is now printed as soon as it's available and errors lead to early returns. I altered the suggestions for each condition to be more precise and checked that they fail properly. This also prevents invalid arguments getting passed to s:version_cmp().
* | Merge pull request #5826 from ZyX-I/fix-typval_encodeJames McCoy2017-01-06
|\ \ | | | | | | Refactor eval/typval_encode.h
| * | eval: Fix typoZyX2017-01-07
| | |
| * | functests: Add tests for new fixesZyX2017-01-06
| | |
| * | eval/typval_encode: Dump empty dictionary before checking for refcycleZyX2017-01-06
| | | | | | | | | Otherwise copyID will stay forever on empty dictionaries.
| * | eval: Work with reference cycles in partials (self) properlyZyX2017-01-06
| | |
| * | eval/typval_encode: Use TYPVAL_ENCODE_CONV_EMPTY_DICT for partialsZyX2017-01-06
| | |
| * | eval/typval_encode.h: Remove documentation that is located in *.c.hZyX2017-01-06
| | |
| * | *: Remove `// fname()` comments near typval_encode includesZyX2017-01-04
| | |
| * | eval/encode: Always check the return value of encode_vim_to_\*ZyX2017-01-04
| | |
| * | unittests: Fix linter errorsZyX2017-01-03
| | |
| * | tests: Add tests for partials dumpingZyX2017-01-03
| | | | | | | | | | | | | | | Also fixed dumping of partials by encode_vim_to_object and added code which is able to work with partials and dictionaries to test/unit/eval/helpers.lua (mostly copied from #5119, except for partials handling).
| * | eval: Fix errorneous early exit when converting lists and dictionariesZyX2017-01-03
| | |
| * | eval/encode: Fail when stringifying NULL functionsZyX2017-01-03
| | |
| * | eval/typval_encode: Handle NULL partials properlyZyX2017-01-03
| | |
| * | eval/typval_encode: Provide proper values as dict argumentZyX2017-01-03
| | |
| * | eval: Fix unused variable error in release buildsZyX2017-01-03
| | |
| * | eval/encode: Fix 4 new linter failuresZyX2017-01-03
| | |
| * | eval/typval_encode: Refactor arguments to argument macrosesZyX2017-01-03
| | | | | | | | | Fixed local test failures somewhere in process.
| * | eval: Do not free partial contents if partial is still referencedZyX2017-01-03
| | | | | | | | | Should fix some tests, including core/job_partial tests.
| * | eval/typval_encode: Rename some \*tv variablesZyX2017-01-03
| | | | | | | | | | | | | | | Renames `tv` function argument to `top_tv` and `cur_tv` variable to `tv`, so `tv` will mean something more or less the same in both _TYPVAL_ENCODE_CONVERT_ONE_VALUE and _TYPVAL_ENCODE_ENCODE functions.
| * | eval: Do not free partial lists as listsZyX2017-01-03
| | |