| Commit message (Collapse) | Author | Age |
|
|
|
| |
gem.cmd is not found by system(['gem', ...]), pass it to cmd.exe.
|
|\ |
|
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/4575876dc865d4160f20d61bd822fbe7cafbec41
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca
NA patches:
vim-patch:8.0.0028
vim-patch:8.0.0029
vim-patch:8.0.0030
|
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/3e496b0ea31996b665824f45664dee1fdd73c4d0
NA patches:
vim-patch:8.0.0015
vim-patch:8.0.0016
vim-patch:177778575148
|
| |
| |
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
vim-patch:20eeb6129d12
|
| |
| |
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Closes #6611
|
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: The netrw plugin does not work.
Solution: Make it accept version 8.0.
https://github.com/vim/vim/commit/9e1e7afc1f29b67fe3721442b49af3b20644a3ee
vim-patch:b56e7ff0dbbf
Update translations for intro page.
https://github.com/vim/vim/commit/b56e7ff0dbbfa85361bdbc5b4a86ff8b57a7acbb
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
vim-patch:8.0.0001
Problem: Intro screen still mentions version7. (Paul)
Solution: Change it to version8.
https://github.com/vim/vim/commit/6401024869dcd722ee1b98b4ba58e6caa215201b
|
| |
| |
| |
| |
| |
| | |
A few more runtime updates.
https://github.com/vim/vim/commit/220adb1e9f9e0b27d28185167d2730bf2f93057d
|
| |
| |
| |
| |
| |
| | |
Updated runtime files, Japanese translations.
https://github.com/vim/vim/commit/7e1479b86c590a66b63a274c079b7f18907d45a4
|
| |
| |
| |
| |
| |
| | |
Updated runtime files
https://github.com/vim/vim/commit/abd468ed0fbcba391e7833feeaa7de3ced841455
|
| |
| |
| |
| |
| |
| | |
Updated runtime files. Remove HiLink commands.
https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
|
| |
| |
| |
| |
| |
| | |
Updated runtime files. Remove version checks for Vim older than 6.0.
https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
|
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/36f44c21da2e912c008683a0c4447fca2a071e9a
|
| |
| |
| |
| |
| |
| | |
Updated runtime files and translations.
https://github.com/vim/vim/commit/818078ddfbb8cc2546f697c5675a251d095722ec
|
|/ |
|
|\ |
|
| |
| |
| |
| | |
It was replaced by the "child queue" concept (MultiQueue).
|
| | |
|
| |
| |
| |
| |
| | |
Introduce multiqueue_process_priority() to process only events at or
above a certain priority.
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Asynchronous API functions are served immediately, which means pending
input could change the state of Nvim shortly after an async API function
result is returned.
nvim_get_mode() is different:
- If RPCs are known to be blocked, it responds immediately (without
flushing the input/event queue)
- else it is handled just-in-time before waiting for input, after
pending input was processed. This makes the result more reliable
(but not perfect).
Internally this is handled as a special case, but _semantically_ nothing
has changed: API users never know when input flushes, so this internal
special-case doesn't violate that. As far as API users are concerned,
nvim_get_mode() is just another asynchronous API function.
In all cases nvim_get_mode() never blocks for more than the time it
takes to flush the input/event queue (~µs).
Note: This doesn't address #6166; nvim_get_mode() will provoke #6166 if
e.g. `d` is operator-pending.
Closes #6159
|
| |
|
|\ |
|
| | |
|
|/ |
|
| |
|
|\
| |
| | |
Test handling of "filetype ... off"/"syntax off" after startup scripts
|
|/ |
|
| |
|
|\ |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
- Work with a bool[] array parallel to the UIWidget enum.
- Rename some functions.
- Documentation.
|
|/ |
|
|
|
| |
Closes #6584
|
| |
|
| |
|
|\
| |
| | |
ci: When using restarting tests kill make with the shell
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
`ulimit` may still be not present: dash and busybox support it, but posh does
not.
|
| | |
|
| | |
|
| | |
|
| | |
|
|/
|
|
| |
If the CWD contains a directory with the literal name "~" then the tests
will have bogus failures.
|
| |
|