| Commit message (Collapse) | Author | Age |
... | |
| | | |
| | | |
| | | |
| | | | |
This makes stderr and exit callbacks work for rpc jobs
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The old man.vim ftplugin advises users to add this to vimrc:
runtime ftplugin/man.vim
Make this a no-op to avoid sending users on a debugging quest.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Windows: path_is_absolute()
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Check if drive letter is alphabetic character in
path_is_absolute_path().
|
| | | |
| | | |
| | | |
| | | | |
vim-patch:0
|
|\ \ \ \
| |_|/ /
|/| | |
| | | |
| | | | |
Closes #5152
Closes #5090
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
If the base directory does not exist, let mkdir(...,'p') create it.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Without the for-loop it is easier to follow, more explicit, and fewer
lines.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- NVIM_RPLUGIN_MANIFEST
- XDG_CONFIG_HOME
- XDG_DATA_HOME
|
|/ / /
| | |
| | |
| | | |
Uses $NVIM_RPLUGIN_MANIFEST if available
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: getcompletion(.., 'dir') returns a match with trailing "*" when
there are no matches. (Chdiza)
Solution: Return an empty list when there are no matches. Add a trailing
slash to directories. (Yegappan Lakshmanan) Add tests for no
matches. (closes vim/vim#947)
https://github.com/vim/vim/commit/b56195ed00a9a79aa6217cddbeedbc8cc7a5b6d8
|
|\ \ \
| |/ /
|/| | |
api: handle null string in buffer_add_highlight
|
|/ / |
|
|\ \
| | |
| | | |
Fix busted tests due to changes in penlight...
|
| | |
| | |
| | |
| | |
| | |
| | | |
penlight 1.4.0 changed how files are being globbed and busted hasn't
been updated accordingly yet. See Olivine-Labs/busted#528 for more
information.
|
|/ /
| |
| |
| |
| | |
luarocks has had trouble in the past with multiple build/install
commands running at the same time.
|
|\ \
| | |
| | | |
cleanup of screen tests: remove unnecessary hl_group and ignores of highlights
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
| |
| |
| | |
[ci skip]
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Reported in #4955, get_past_head() is supposed to return a pointer
after the head of the path (/ in UNIX, c:\ in Windows) but the windows
case was removed.
Removed the Mac reference in the comment, since there no special
handling for Mac.
vim-patch:0
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Weird tab+space combination used for alignment. All spaces now
- Added back <C-T> mapping (somehow we missed that completely)
- Fixed mistake that <Plug>(Man) opens in a new tab. Also added note at
top on how the window is chosen/opened.
- Clarified q local mapping
- Removed section that shows an example autocmd to add desired folding
style.
- Removed random line in `usr_12.txt` about `<Leader>` and backslash.
- :Man supports completion, not auto-completion.
Closes #5171
|
| |
| |
| |
| |
| |
| |
| |
| | |
Calling printdiagraph() with msg_silent != 0 can result in an endless
loop because the loop condition never changes, if msg_col is never
changed.
To fix this, calculate the number of iterations before the loop, which
is always smaller than list_width.
|
|\ \
| | |
| | | |
Re-add ":browse" command modifier and use it with ":oldfiles"
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In 3b12bb225adda2aac40a55f7009cae05311b2a43, ":oldfiles" was taught to
behave like Vim's ":browse oldfiles" if ":oldfiles!" was used. However,
this conflates the use of ! for abandoning a modified buffer with
choosing one file out of a list of oldfiles.
Now that ":browse" is supported again, ":browse oldfiles" will allow the
user to select an old file, while still complaining if that would cause
a modified buffer to be abandoned. ":browse oldfiles!" will just
abandon the buffer, as expected.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
scripts/vim-patch.sh: use "set -p"
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Without this the "cd scripts/.." might change to another dir (since
CDPATH is looked at before a local path), and then NEOVIM_SOURCE_DIR
might end up being "/somewhere/else\n/somewhere/else" (since the "cd"
prints the dir already in that case).
Closes https://github.com/neovim/neovim/pull/5213.
|
|\ \ \
| |/ /
|/| | |
ignore .res files generated by the tests in testdir
|
|/ / |
|
|\ \
| | |
| | | |
timer: do not crash when processing events in the handler
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
Disable test on Travis macOS/OSX.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Temporary change to avoid frequent hangs on Travis macOS/OSX builds.
Hang does not occur on Quickbuild OSX (Yosemite) build.
Reverting e9061117a5b8f195c3f26a5cb94e18ddd7752d86 avoids the hang, but causes
more serious regressions on many more systems.
Note that the job_spec hang only happens with the gcc-4.9 Travis OSX build.
References #5002
References #5029
|