| Commit message (Collapse) | Author | Age |
... | |
| | | | |
| | | | |
| | | | |
| | | | | |
grep support of "\s" pattern is unreliable.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
build: fix `doc_html` target
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This file wasn't used since e1cc0fe99688. That may have been
accidental, but it's not needed anymore anyway. Also the "Workaround
for hanging" is no longer relevant.
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
ref 24f2cc55a83d #9430
|
|\ \ \ \ \ |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Decide whether to highlight the visual-selected character under the
cursor, depending on 'guicursor' style:
- Highlight if cursor is blinking or non-block (vertical, horiz).
- Do NOT highlight if cursor is non-blinking block.
Traditionally Vim's visual selection does "reverse mode", which perhaps
conflicts with the non-blinking block cursor. But 'guicursor' defaults
to a vertical bar for selection=exclusive, and this confuses users who
expect to see the text highlighted.
closes #8983
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
This check is meaningless, we assume the terminal supports reverse-mode.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
vim-patch:8.1.{651,653}
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Problem: Arglist test fails on MS-windows.
Solution: Only use a file name with a double quote on Unix.
https://github.com/vim/vim/commit/3de8c2d1f027410db6a06f0fcd3355d96c8b8596
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: :args \"foo works like :args without argument.
Solution: Fix check for empty argument. (closes vim/vim#3728)
https://github.com/vim/vim/commit/2ac372ccee1af6f9fa105bf2648d5e4efa554236
|
|\ \ \ \ \ |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Note about shada.c:
- shada_read_next_item_start was intentionally shadowing `unpacked` and
`i` because many of the macros (e.g. ADDITIONAL_KEY) implicitly
depended on those variable names.
- Macros were changed to parameterize `unpacked` (but not `i`). Macros
like CLEAR_GA_AND_ERROR_OUT do control-flow (goto), so any other
approach is messy.
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Remove this vestigial hack from #7624.
Since 5a0d0286ff4d we blacklist BCE more surgically. And
patch_terminfo_bugs() is the more appropriate place for that.
ref 5749ecaf228f4a963a4e96ada831f902c73a1e80
ref #4210 #4421 #7035 #7337 #7381 #7425 #7618
|
|\| | | |
| | | | |
| | | | | |
Rework Python provider/health check to use neovim module again
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Adapt the checks so we can still report when the pynvim module is
present but the neovim module is missing.
|
| | | | | |
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The neovim module is available for backwards compatibility. We should
not yet force the use of the pynvim module, since there's no other major
reason to bump the minimum supported Python client module.
Closes #9426
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: It is not so easy to write a script that works with both Python 2 and Python 3, even when the Python code works with both.
Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata)
https://github.com/vim/vim/commit/f42dd3c3901ea0ba38e67a616aea9953cae81b8d
|
|\ \ \ \
| | | | |
| | | | | |
Multigrid: fix popupmenu position + some cleanup
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Adjustment will get more complex with floats, tabgrid etc,
so make it into a function.
|
|\ \ \ \ \
| | |_|_|/
| |/| | | |
Mark a few more functionaltests as fragile
|
| | | | |
| | | | |
| | | | |
| | | | | |
fragile
|
| | | | | |
|
| | |/ /
| |/| | |
|
|\| | |
| | | |
| | | | |
travis: Only run lint job for master branch/PRs
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
travis: Run ci for release-* branches
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
nvim.1: Add missing .El directive
|
| | |/
| |/|
| | |
| | |
| | | |
$ LC_ALL=en_US.UTF-8 MANROFFSEQ='' MANWIDTH=80 man --warnings -E UTF-8 -l -Tutf8 -Z man/nvim.1 >/dev/null
mdoc warning: A .Bl directive has no matching .El (#59)
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This avoids generating the tags files all the time, and makes `make
install` with `CMAKE_INSTALL_MESSAGE=LAZY` much more silent in general.
Using `copy_if_different` instead of `remove` + `copy_directory` might
be good on top, but is a) not really necessary anymore and b) would not
sync removed files.
For this `file(COPY` could be used, but would require to re-run cmake on
changed input files then.
|
| |
| |
| |
| |
| |
| | |
Apparently Konsole's terminfo is still broken.
ref #9364
closes #9420
|
|\ \
| | |
| | | |
implement ext_multigrid: draw each window on a separate resizable grid.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Handle the rare case of full highlight table properly
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
make Screen explicitly tied to its session
|