| Commit message (Collapse) | Author | Age |
| ... | |
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
os_env_exists() fails on MSVC build:
os_env_exists:104: uv_os_getenv(EMPTY_VAR) failed: -4094 UNKNOWN
- Revert 396a3945c4eba733b3a99a7ded217af83a400791
- HACK: Windows: return TRUE if uv_os_getenv() returns UV_UNKNOWN, until
libuv bug is fixed: https://github.com/libuv/libuv/issues/2413
ref https://github.com/neovim/neovim/commit/396a3945c4eba733b3a99a7ded217af83a400791#r34642361
|
| | |
| |
| |
| |
| |
| | |
Problem: Crash when using gtags. (issue vim/vim#4102)
Solution: Check for negative row or col in screen_puts_len(). (Christian
Brabandt)
https://github.com/vim/vim/commit/0b4c9eddb5752d46b65d16e42230b1228f230f40
|
| | |
| |
| |
| |
| | |
Fixes https://github.com/neovim/neovim/issues/3266
close #10657
|
| |\ \
| | |
| | | |
vim-patch:8.1.{1465,1467}
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Problem: Cscope test fails.
Solution: Update expected text.
https://github.com/vim/vim/commit/d6ec1730bab0ef4a472637ffe5796d1351442308
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Problem: Allocating wrong amount of memory. (Yegappan Lakshmanan)
Solution: Use sizeof() for right type of struct.
https://github.com/vim/vim/commit/a37833dbd7d3cb0fff4cbf0ba6e80d0ad55cd4b9
|
| |\ \ \
| | | |
| | | | |
vim-patch:8.1.1318: code for text changes is in a "misc" file
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | | |
Ref: https://github.com/neovim/neovim/pull/10171#discussion_r292437832
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
Uses `128 + term_signal` in case of exit due to a signal.
Fixes https://github.com/neovim/neovim/issues/10571.
|
| |\ \ \ \
| | | | |
| | | | | |
vim-patch:8.1.{199,200}
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
`len` is used with `list_append_string` later, and should reflect the
length of `word` (i.e. 0 when not setting word / breaking above).
Ref: neovim/neovim#9782 (comment)
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: spellbadword() not tested.
Solution: Add a test. (Dominique Pelle, closes vim/vim#3235)
https://github.com/vim/vim/commit/872e451e8c326d5dd3062ef621fcbf0a4c5bef78
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: spellbadword() does not check for caps error. (Dominique Pelle)
Solution: Adjust capcol when advancing.
https://github.com/vim/vim/commit/66ab916935585391b2efaa8e39075e1ef94717b1
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
closes #3457
|
| | | |_|/ /
| |/| | | |
|
| | | | | |
| | | | |
| | | | | |
fix #10696
|
| | |/ / /
|/| | |
| | | |
| | | |
| | | | |
Problem: Cannot build without the +eval feature.
Solution: Define ex_const if needed.
https://github.com/vim/vim/commit/0abb4273f6c14f9ebca8be67d42c6e67b4f612cf
|
| | | | | |
|
| | |/ /
|/| |
| | |
| | |
| | | |
Problem: Crash when correctly spelled word is very long. (Ben Kraft)
Solution: Check word length before copying. (closes vim/vim#4778)
https://github.com/vim/vim/commit/5bcc5a1ff94bbab1b175e35a72e3df974106b393
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | | |
clang/"dead assignment": suppessed getchar.c
Possibly invalid, read on line 1972:
if (keylen >= 0 && keylen <= typebuf.tb_len) {
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
To ensure consistency and avoid possible errors in the code
the assigment is considered to be legit.
|