| Commit message (Collapse) | Author | Age |
... | |
|\
| |
| | |
Factor out float usage & remove '+float' references
|
| |
| |
| |
| |
| | |
The corresponding code was already removed in
b4ca3abc9f6676ea250e42c834716a5f66d8ec30
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
The test was hoping to not find a tags file, but didn't actively guard
against it. In my case, I had a tags file present which was causing
different output to be generated. To fix this, let's set the tags
option to look for an unlikely filename.
|
|\ \ |
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| | |
Executing old tests leaves an empty file 'del' that doesn't get removed
by `make clean`.
|
|\ \
| | |
| | | |
Remove deadcode due to nonnullret funcs.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| |
| | |
- @justinmk: Clarify comments
- Match verbiage used in other api/*.c files
- Fix a few typos/missing words
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Configuration for clang-format and related utilities.
Examples:
clang-format -style=file <file>
git clang-format -style=file <commit>
git diff -U0 HEAD^ | clang-format-diff.py -i -p1 -style=file
|
|\ \ |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: With a wrapping line the cursor may not end up in the right place.
(Nazri Ramliy)
Solution: Adjust n_extra for a Tab that wraps. (Christian Brabandt)
https://code.google.com/p/vim/source/detail?r=v7-4-517
|
|/ /
| |
| |
| |
| |
| |
| | |
Problem: Memory access error. (Dominique Pelle)
Solution: Update tpos. (Christian Brabandt)
https://code.google.com/p/vim/source/detail?r=v7-4-514
|
| |
| |
| |
| |
| |
| | |
Update runtime files and translations.
https://code.google.com/p/vim/source/detail?r=31f7581068a9c3119e3bd2cd74160eb8282c3c6e
|
|/
|
|
| |
- regression by 04c0658024a98a0586997f0ea8af1e3f774cc83e
|
|\
| |
| | |
main.c improvements
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Constify parameters and reduce char_u usage
- Modernize function signatures
- Modernize function comment blocks, rewriting if needed
- Factor out mainerr_arg_missing(); all the other ME_* macros lack
such a wrapper function.
main_errors[]
- Remove unneeded parentheses
- Remove an unused error string and its respective macro
mainerr()
- Don't print version when called. mainerr() only handles errors
related to command line arguments, so the version isn't much help at
all.
- Changed 'vim' instance to 'nvim'
Misc.
- Remove duplicate include
- Replace unneeded 'inttypes.h' include with 'stdint.h'
- Remove stray comments
- Remove excessive newlines
|
|/ |
|
|\ |
|
|/
|
|
|
| |
This test depends on terminal size to work correctly. After migration this
requirement is removed.
|
|\ |
|
| |
| |
| |
| |
| |
| | |
While running under valgrind, the screen can take significantly longer to
update(especially on travis) so a higher timeout can be required. Also reduce
the timeout when not running on valgrind.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When a test that fails leaves nvim in a 'Press Enter...' state, the whole suite
will hang because the `qa!` command executed before the next test won't be
processed until '<enter>' is sent.
Now the lua client can send a signal with when `Session:exit()` is called, so
the `qa!` request is no longer necessary.
Also:
- Set noswapfile at startup to prevent tests from leaving .s* swap files(should
also improve test environment determinism)
- Use `assert(false, msg) instead of `error(msg)` to report screen assertion
failures.
|
|/
|
|
|
|
|
| |
The latest version works around a libuv bug that can leave zombie nvim processes
despite the event loop being properly cleaned up. This can lead to functional
tests being aborted depending on the maximum number of child processes
configured for a platform.
|
|\
| |
| |
| | |
stricter highlight tests'
|
| | |
|
|/ |
|
|\
| |
| | |
doc: "halfway a line" is a very confusing phrase
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
If you Google for this phrase found in the Vim documentation you'll find
almost exclusively hits from the Vim documentation. I think changing
"halfway a line" to "halfway through a line" makes more sense.
There seems to be an pervasive odd use of the word 'halfway' in the
original docs which I'm updating everywhere.
|
|\ \
| | |
| | | |
vim-patch:7.4.500 and fix in vim-patch:7.4.406
|
| | | |
|
| |/
| |
| |
| |
| |
| |
| | |
Problem: Test 72 still fails once in a while.
Solution: Don't set 'fileformat' to unix, reset it. (Ken Takata)
https://code.google.com/p/vim/source/detail?r=v7-4-500
|
|\ \
| | |
| | | |
Fix CID #102150
|
| |/
| |
| |
| |
| |
| |
| | |
Don't attempt to write an error message to a channel that may have been
closed and freed.
[CID #102150](https://scan8.coverity.com/reports.htm#v22612/p10672/fileInstanceId=3625286&defectInstanceId=1525721&mergedDefectId=102150)
|
|\ \
| | |
| | | |
vim-patch: Mark patches as NA.
|
| | | |
|