aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* move ins_charDaniel Hahler2019-08-07
|
* lintDaniel Hahler2019-08-07
|
* move del_linesDaniel Hahler2019-08-07
|
* lint/sync: truncate_lineDaniel Hahler2019-08-07
|
* move truncate_lineDaniel Hahler2019-08-07
|
* lint/sync: open_lineDaniel Hahler2019-08-07
|
* move open_lineDaniel Hahler2019-08-07
|
* move copy_indent (from nvim's indent.c)Daniel Hahler2019-08-07
|
* move del_bytesDaniel Hahler2019-08-07
|
* move del_char, del_charsDaniel Hahler2019-08-07
|
* move ins_strDaniel Hahler2019-08-07
|
* move ins_char_bytesDaniel Hahler2019-08-07
|
* move ins_bytes, ins_bytes_lenDaniel Hahler2019-08-07
|
* move unchangedDaniel Hahler2019-08-07
|
* move changed_linesDaniel Hahler2019-08-07
|
* move deleted_lines, deleted_lines_mark, changed_lines_bufDaniel Hahler2019-08-07
|
* move appended_lines_markDaniel Hahler2019-08-07
|
* move appended_linesDaniel Hahler2019-08-07
|
* remove inserted_bytes (comes via text properties, v8.1.0678)Daniel Hahler2019-08-07
|
* move changedOneline, changed_bytesDaniel Hahler2019-08-07
|
* move changed_commonDaniel Hahler2019-08-07
|
* move changed_int/changed_internalDaniel Hahler2019-08-07
|
* move changedDaniel Hahler2019-08-07
|
* move change_warningDaniel Hahler2019-08-07
|
* headerDaniel Hahler2019-08-07
|
* orig src/nvim/change.cDaniel Hahler2019-08-07
|
* vim-patch:3f86ca0faa29cb862f876a97f87790f3a46a3858Daniel Hahler2019-08-07
| | | | | Add missing files from patch 8.1.1318 https://github.com/vim/vim/commit/3f86ca0faa29cb862f876a97f87790f3a46a3858
* vim-patch:8.1.1318: code for text changes is in a "misc" fileDaniel Hahler2019-08-07
| | | | | | Problem: Code for text changes is in a "misc" file. Solution: Move the code to change.c. https://github.com/vim/vim/commit/ec28d1516eb8bb5dcaa42de145953a6d49aebb6f
* Fix lualint: remove unused varDaniel Hahler2019-08-07
|
* cmakelists: fixed tests to avoid clang warnings (#10705)Ihor Antonov2019-08-07
| | | | * clang/"dead assignment" * clang/"Uninitialized argument value"
* tests: more cleanup of plugin/shada_specDaniel Hahler2019-08-07
| | | | | Ref: https://github.com/neovim/neovim/pull/10701/commits/330a6713#r311005754 Closes https://github.com/neovim/neovim/pull/10710.
* build: lint: fix exit with optional pylintDaniel Hahler2019-08-07
| | | | Ref: https://github.com/neovim/neovim/pull/10714#issuecomment-518932355
* Merge pull request #10703 from ngortheone/clang_dead2Björn Linse2019-08-07
|\ | | | | | | | | | | clang/"dead assignment": suppessed getchar.c Possibly invalid, read on line 1972: if (keylen >= 0 && keylen <= typebuf.tb_len) {
| * clang/"dead assignment": suppessedIhor Antonov2019-08-05
| | | | | | | | | | To ensure consistency and avoid possible errors in the code the assigment is considered to be legit.
* | Merge pull request #10513 from bfredl/bytecountBjörn Linse2019-08-06
|\ \ | | | | | | api/lua: add {byte_count} parameter to line region change event
| * | lua: support getting UTF-32 and UTF-16 sizes of replaced textBjörn Linse2019-08-06
| | |
| * | lua: add {old_byte_size} to on_lines buffer change eventBjörn Linse2019-08-06
| | |
* | | Fix list_features to include space after first feature (#10711)Daniel Hahler2019-08-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | Regressed in e134cc9d4a: the use of list_in_columns was not adding a space after the first features, because we do not start on a new line: > Features: -acl+iconv +tui This moves all the related code to `list_features`, and just joins them with spaces.
* | | build: move pylint to Makefile, optional with "make lint" (#10714)Daniel Hahler2019-08-06
| | | | | | | | | | | | | | | This avoids errors when using "make lint", but "flake8" is not available. We do not want to install it then via third-party. On CI "make pylint" is used explicitly.
* | | tests: unit.helpers: provide string with write errors (#10715)Daniel Hahler2019-08-06
|/ / | | | | | | This might help to have more information in case of errors, like mentioned in https://github.com/neovim/neovim/commit/eec529cf9e.
* | Merge #10701 from justinmk/test-fixesJustin M. Keyes2019-08-06
|\ \ | | | | | | test: Eliminate plugin/helpers.lua
| * | test/mbyte_spec: skip broken test on QuickBuildJustin M. Keyes2019-08-06
| | | | | | | | | | | | Forgot `return` in eec529cf9e13.
| * | test: Eliminate plugin/helpers.luaJustin M. Keyes2019-08-05
| | |
* | | Merge #10655 'environ(), getenv(), setenv()'Justin M. Keyes2019-08-06
|\ \ \ | | | | | | | | | | | | close #10655
| * | | f_environ: cleanup/refactorDaniel Hahler2019-08-06
| | | | | | | | | | | | | | | | | | | | - use os_getenvname_at_index / os_getenv - f_getenv: empty (*p == NUL) is not null (undefined)
| * | | vim-patch:8.1.1305: there is no easy way to manipulate environment variablesDaniel Hahler2019-08-06
|/ / / | | | | | | | | | | | | | | | | | | Problem: There is no easy way to manipulate environment variables. Solution: Add environ(), getenv() and setenv(). (Yasuhiro Matsumoto, closes vim/vim#2875) https://github.com/vim/vim/commit/691ddeefb545d8488e5a495af61caba2e57b3de9
* / / clang/"dead assignment": screen.c #10702Ihor Antonov2019-08-06
|/ / | | | | | | | | | | | | Suppress the warning. mb_c and mb_l describe a char together, they are not independent variables. The coupled assignments are good practice to avoid future confusion, even if the current code doesn't use an assigned value.
* / vim-patch:8.1.1439: ga_grow(): 1.5x growth rate #10699Jan Edmund Lazo2019-08-05
|/ | | | | | Problem: Json_encode() is very slow for large results. Solution: In the growarray use a growth of at least 50%. (Ken Takata, closes vim/vim#4461) https://github.com/vim/vim/commit/c47ed44be76a520ded90913099771999c8a79eeb
* Merge pull request #10690 from bfredl/lua_printBjörn Linse2019-08-05
|\ | | | | lua: laundry list (crashes and additions)
| * lua: add vim.in_fast_event() to check if we are in a luv callbackBjörn Linse2019-08-05
| |