aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
| * | | | | vim-patch:8.1.0686: when 'y' is in 'cpoptions' yanking for the clipboard ↵Jan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes redo Problem: When 'y' is in 'cpoptions' yanking for the clipboard changes redo. Solution: Do not use the 'y' flag when "gui_yank" is TRUE. (Andy Massimino, closes vim/vim#3760) https://github.com/vim/vim/commit/5823f84dd04198994e3e5f2e278a5e315c47d32d
| * | | | | vim-patch:8.1.0641: no check for out-of-memory when converting regexpJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: No check for out-of-memory when converting regexp. Solution: Bail out when lalloc() returns NULL. (John Marriott) https://github.com/vim/vim/commit/c57463c9c6ee893285f553e0ac3b2fe5935f16b8
| * | | | | vim-patch:8.1.0630: "wincmd p" does not work after using an autocmd windowJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: "wincmd p" does not work after using an autocmd window. Solution: Store "prevwin" in aco_save_T. (Christian Brabandt, closes vim/vim#3690) https://github.com/vim/vim/commit/a42df5934bdc1178ed2ee8cb9c8686975b578497
| * | | | | vim-patch:8.1.0623: iterating through window frames is repeatedJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Iterating through window frames is repeated. Solution: Define FOR_ALL_FRAMES. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/3d1491ed2394b3e92902102879bace28a5f9c201
| * | | | | vim-patch:8.1.0583: using illogical name for get_dict_number()/get_dict_string()Jan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Using illogical name for get_dict_number()/get_dict_string(). Solution: Rename to start with dict_. https://github.com/vim/vim/commit/8f66717a1f835b8194139d158c1e2df8b30c3ef3
| * | | | | vim-patch:8.1.1651: suspend test is flaky on some systemsJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Suspend test is flaky on some systems. Solution: Wait for the shell prompt to show. (Yee Cheng Chin, closes vim/vim#4632) https://github.com/vim/vim/commit/999224422633935eaa8b804ce3d1c2f9ca195d0a
| * | | | | vim-patch:8.1.0533: screendump tests can be flakyJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Screendump tests can be flaky. Solution: Add VerifyScreenDump to the pattern of flaky tests. https://github.com/vim/vim/commit/447f6ce8bd42fe3adbdf97eff9a38a9bfef9eeed
| * | | | | vim-patch:8.1.0531: flaky tests often fail with a common error messageJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Flaky tests often fail with a common error message. Solution: Add a pattern to match an error message indicating a flaky test. https://github.com/vim/vim/commit/dbc0d2163aa5e090d5a0c83aea448803ddbab664
| * | | | | vim-patch:8.1.1012: memory leak with E461Jan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Memory leak with E461. Solution: Clear the typeval. (Dominique Pelle, closes vim/vim#4111) https://github.com/vim/vim/commit/ab89d7ab89a1dd7e40cc28df96c71c11b5ab9089
| * | | | | vim-patch:8.1.0833: memory leak when jumps output is filteredJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Memory leak when jumps output is filtered. Solution: Free the filtered name. (Dominique Pelle, closes vim/vim#3869) https://github.com/vim/vim/commit/d93090f41f70c521cfad5b25efcb0024b9480082
| * | | | | vim-patch:8.1.1221: filtering does not work when listing marksJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Filtering does not work when listing marks. Solution: Implement filtering marks. (Marcin Szamotulski, closes vim/vim#3895) https://github.com/vim/vim/commit/ad6dc49a7564a99fca36c1928e3865787d3bd5b2
| * | | | | vim-patch:8.1.0505: filter command test may fail if helplang is not setJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Filter command test may fail if helplang is not set. Solution: Set 'helplang' for the test. (James McCoy, closes vim/vim#3591) https://github.com/vim/vim/commit/bd9a0c611ce08f8dce033537bc2f110987b99802
| * | | | | vim-patch:8.1.0495: :filter only supports some commandsJan Edmund Lazo2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: :filter only supports some commands. Solution: Add :filter support for more commands. (Marcin Szamotulski, closes vim/vim#2856) https://github.com/vim/vim/commit/f86db78fed78541cefdb706e4779ce5ae9ca7820
* | | | | | PVS/V1028: cast operands, not the result #10503Ihor Antonov2019-07-16
| | | | | |
* | | | | | Merge #10520 'PVS/V1037: redundant case-branches'Justin M. Keyes2019-07-16
|\ \ \ \ \ \
| * | | | | | lintIhor Antonov2019-07-15
| | | | | | |
| * | | | | | pvs/V1037: two case-branches perform the same actionIhor Antonov2019-07-15
| | |_|/ / / | |/| | | |
* | | | | | PVS/V1028: cast operands, not the result #10502Ihor Antonov2019-07-16
| | | | | |
* | | | | | Merge pull request #10504 from bfredl/hl_defBjörn Linse2019-07-16
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | highlight: expose builtin highlight groups using hl_group_set event
| * | | | | highlight: expose builtin highlight groups using hl_group_set eventBjörn Linse2019-07-14
| | | | | |
* | | | | | viml/profile: cast os_hrtime() resultJustin M. Keyes2019-07-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Temporary measure to avoid QuickBuild CI failure: 8:42:54,702 INFO - Executing post-execute action... 18:42:54,702 ERROR - Step 'master>buildall>build-node?testNode=freebsd-64>build-and-run-tests>build-and-run-tests-parameterized?buildType=Release>configure-neovim-and-build-nvim' is failed: Failed to run command: mkdir -p build/Release && cd build/Release && cmake -G "Unix Makefiles" -DBUSTED_OUTPUT_TYPE=TAP -DMIN_LOG_LEVEL=3 -DCMAKE_BUILD_TYPE=Release -DTRAVIS_CI_BUILD=ON ../.. && gmake VERBOSE=1 nvim unittest-prereqs functionaltest-prereqs Command return code: 2 Command error output: /usr/home/quickbuild/buildagent/workspace/root/neovim/pull-requests-automated/src/nvim/profile.c:70:27: error: implicit conversion changes signedness: 'proftime_T' (aka 'long') to 'unsigned long' [-Werror,-Wsign-conversion] STRICT_ADD(os_hrtime(), nsec, &rv, int64_t); ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~ /usr/home/quickbuild/buildagent/workspace/root/neovim/pull-requests-automated/src/nvim/assert.h:150:26: note: expanded from macro 'STRICT_ADD' do { *(c) = (t)((a) + (b)); } while (0) ^ 1 error generated. gma...
* | | | | | PVS/V781: suppress false positive #10516Ihor Antonov2019-07-16
| | | | | |
* | | | | | PVS/V1028: cast operands, not the result #10496Ihor Antonov2019-07-16
| |/ / / / |/| | | |
* | | | | Fix missing CursorHoldI events (#3758)Daniel Hahler2019-07-16
| | | | | | | | | | | | | | | Fixes https://github.com/neovim/neovim/issues/3757.
* | | | | PVS/V1028: cast operands, not the result #10507Ihor Antonov2019-07-16
| | | | |
* | | | | PVS/V1028: cast operands, not the result #10498Ihor Antonov2019-07-16
| |/ / / |/| | | | | | | | | | | | | | | The + 1 can be removed. It was used for current_screenline, which now is dedicated linebuf_char buffer.
* | | | Fix is_executable_in_path() on Windows (#10468)erw72019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix problem that 1byte extra memory was allocated in is_executable_in_path * Revert "Revert "tests: executable_spec: enable pending test #10443" (#10454)" This reverts commit 13fbeda0e56db36aeeb865bb5b33d13f69b2fdbc.
* | | | PVS/V590: redundant condition #10510Ihor Antonov2019-07-15
| | | |
* | | | PVS/V547: expression is always false #10511Ihor Antonov2019-07-15
| | | |
* | | | PVS/V1028: cast operands, not the result #10508erw72019-07-14
| | | | | | | | | | | | | | | | fix #10508
* | | | PVS/V1028: cast operands, not the result #10508Ihor Antonov2019-07-14
| | | |
* | | | PVS/V1028 ugrid.c:76 (#10495)Ihor Antonov2019-07-14
| | | | | | | | | | | | | | | | * code review
* | | | Merge pull request #10497 from bfredl/synlistBjörn Linse2019-07-14
|\ \ \ \ | |/ / / |/| | | messages: fix missing newlines in execute("syn list").
| * | | syntax: refactor syn_list_header to not use magic valueBjörn Linse2019-07-14
| | | |
| * | | syntax: fix missing newlines in execute("syn list"). fixes #10467Björn Linse2019-07-14
| | | |
* | | | floats: fix 'winblend' on top of doublewidth chars.Björn Linse2019-07-13
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | The interaction between 'winblend' and doublewidth chars in the background does not look very good. But check no chars get incorrectly placed at least. Also check that hidden EndOfBuffer region (from style="minimal") blends correctly.
* | | viml/profile: revert gettimeofday() #10488Justin M. Keyes2019-07-13
| | | | | | | | | | | | | | | | | | | | | e2ce5ff9d616 was proven to be bogus, so revert it. close #10328 ref #10356 ref #10452
* | | Merge #10435 from Shougo/vim-8.1.1610Justin M. Keyes2019-07-13
|\ \ \
| * | | Fix lint failedShougo Matsushita2019-07-06
| | | |
| * | | Fix errorsShougo Matsushita2019-07-06
| | | |
| * | | vim-patch:8.1.1611: bufadd() reuses existing buffer without a nameShougo Matsushita2019-07-06
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Bufadd() reuses existing buffer without a name. Solution: When the name is empty always create a new buffer. https://github.com/vim/vim/commit/892ae723ab95e429222e930cf41b32809567e58e
| * | | vim-patch:8.1.1610: there is no way to add or load a buffer without side effectsShougo Matsushita2019-07-06
| | | | | | | | | | | | | | | | | | | | | | | | Problem: There is no way to add or load a buffer without side effects. Solution: Add the bufadd() and bufload() functions. https://github.com/vim/vim/commit/15e248e37f3925d430f96e945d52d3dc423cdc83
* | | | PVS/V547: dead code #10459Bartosz Miera2019-07-13
| | | |
* | | | vim-patch:8.1.1660: assert_fails() inside try/catch #10472Daniel Hahler2019-07-13
| | | | | | | | | | | | | | | | | | | | Problem: Assert_fails() does not fail inside try/catch. Solution: Set trylevel to zero. (Ozaki Kiichi, closes vim/vim#4639) https://github.com/vim/vim/commit/7780e5c1c5485a979ab6e3914a43e17912e213a8
* | | | build: fix check_c_compiler_flag for -Wno-… (#10483)Daniel Hahler2019-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `check_c_compiler_flag(-Wno-doesnotexist …)` is successful always, apparently for all "no-" prefixes. Therefore check for the flag itself (without "no-" prefix). I am seeing a warning if the source fails to compile: > cc1: warning: unrecognized command line option ‘-Wno-meh’ Which is turned into an error with `-Werror`: > cc1: error: unrecognized command line option ‘-Wno-meh’ [-Werror] But when it compiles successfully, there is no warning/error. gcc (GCC) 9.1.0.
* | | | oldtest: more compact output with "clean" target (#10477)Daniel Hahler2019-07-12
| | | | | | | | | | | | | | | | Previously it would be displayed across multiple lines (with the escaped newlines), while this makes it display in a single line.
* | | | vim-patch:8.1.1173: suspend test has duplicated lines (#10466)Daniel Hahler2019-07-11
| | | | | | | | | | | | | | | | | | | | Problem: Suspend test has duplicated lines. Solution: Use a function. https://github.com/vim/vim/commit/a8356bc1734195d130c6eeaf4858356ae3a3f722
* | | | Merge pull request #9575 from bfredl/redrawdebugBjörn Linse2019-07-09
|\ \ \ \ | | | | | | | | | | ui: implement better redrawdebug for the compositor
| * | | | ui: add 'redrawdebug' option for flexible debugging of redrawingBjörn Linse2019-07-09
| | | | |
* | | | | Merge pull request #10457 from bfredl/dwfloatBjörn Linse2019-07-09
|\ \ \ \ \ | | | | | | | | | | | | compositor: handle float overlapping left half of doublewidth char