aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | vim-patch:8.1.0146: when $LANG is set the compiler test may fail (#9238)Jan Edmund Lazo2018-11-15
| | | | | | | | | | Problem: When $LANG is set the compiler test may fail. Solution: Unset $LANG. https://github.com/vim/vim/commit/f0447e89a52885630947510f2d1b55f665a1a20e
* | vim-patch:8.1.0108: no Danish translations (#9235)Jan Edmund Lazo2018-11-15
| | | | | | | | | | | | Problem: No Danish translations. Solution: Add Danish message translations. (closes vim/vim#3073) Move list of languages to a common makefile. https://github.com/vim/vim/commit/a4a2934e59429e2ff68d478556ad8b2043fb0fda
* | vim-patch:8.1.0527: using 'shiftwidth' from wrong buffer for folding (#9234)Jan Edmund Lazo2018-11-15
| | | | | | | | | | Problem: Using 'shiftwidth' from wrong buffer for folding. Solution: Use "buf" instead of "curbuf". (Christian Brabandt) https://github.com/vim/vim/commit/0c27cbcacf0f58ad30f0b15d1f442f73f40347c2
* | Merge #9231 'vim-patch:8.1.{115,143,311,352}'Justin M. Keyes2018-11-14
|\ \
| * | vim-patch:8.1.0352: browsing compressed tar files does not always workJan Edmund Lazo2018-11-13
| | | | | | | | | | | | | | | | | | Problem: Browsing compressed tar files does not always work. Solution: Use the "file" command to get the compression type. https://github.com/vim/vim/commit/d4a1aabe372ccb95aec968f4d54503231b1f956c
| * | vim-patch:8.1.0311: filtering entries in a quickfix list is not easyJan Edmund Lazo2018-11-13
| | | | | | | | | | | | | | | | | | Problem: Filtering entries in a quickfix list is not easy. Solution: Add the cfilter plugin. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/8c5e0093c9badced73e382915fb024a5c3ea463b
| * | vim-patch:8.1.0143: matchit and matchparen don't handle E363Jan Edmund Lazo2018-11-13
| | | | | | | | | | | | | | | | | | Problem: Matchit and matchparen don't handle E363. Solution: Catch the E363 error. (Christian Brabandt) https://github.com/vim/vim/commit/3d1d6475f9665660c80cc53a7da2d5450b8b8d08
| * | vim-patch:8.1.0115: the matchparen plugin may throw an errorJan Edmund Lazo2018-11-13
|/ / | | | | | | | | | | Problem: The matchparen plugin may throw an error. Solution: Change the skip argument from zero to "0". https://github.com/vim/vim/commit/b7a5ab112ab2267c54acdb6a326642afcd797bc4
* | clipboard: support Wayland (#9230)ainola2018-11-13
| | | | | | Fixes #9213
* | Merge #9049 from janlazo/vim-8.0.1352Justin M. Keyes2018-11-12
|\ \
| * | vim-patch: add matchit docJan Edmund Lazo2018-11-12
| | | | | | | | | | | | matchit doc is named 'pi_matchit.txt'.
| * | vim-patch: rename path to check_colors.vimJan Edmund Lazo2018-11-12
| | |
| * | vim-patch: move test_urls.vim out of runtime/Jan Edmund Lazo2018-11-12
| | | | | | | | | | | | Rename it to check_urls.vim, similar to check-includes.py.
| * | vim-patch:8.0.1352: dead URLs in the help go unnoticedJan Edmund Lazo2018-11-12
|/ / | | | | | | | | | | Problem: Dead URLs in the help go unnoticed. Solution: Add a script to check URLs in the help files. (Christian Brabandt) https://github.com/vim/vim/commit/f38c86eb6b665d9fcd3d232820a48198eccac376
* | Merge #8952 'vim-patch:8.0.1620,8.1.{96,340}'Justin M. Keyes2018-11-12
|\ \
| * | lintJan Edmund Lazo2018-11-12
| | |
| * | vim-patch:8.1.0096: inconsistent use of the word autocommandsJan Edmund Lazo2018-11-12
| | | | | | | | | | | | | | | | | | Problem: Inconsistent use of the word autocommands. Solution: Don't use auto-commands or "auto commands". https://github.com/vim/vim/commit/8c55533c6f109db2a0fff69651887f9474eb09c6
| * | vim-patch:8.0.1620: reading spell file has no good EOF detectionJan Edmund Lazo2018-11-12
| | | | | | | | | | | | | | | | | | Problem: Reading spell file has no good EOF detection. Solution: Check for EOF at every character read for a length field. https://github.com/vim/vim/commit/e26e0d2b83c2875b9829b884c2ababf8ca771f7e
| * | oldtests: skip Test_spellinfo()Jan Edmund Lazo2018-11-12
| | | | | | | | | | | | nvim supports only `set encoding=utf8`.
| * | vim-patch:8.1.0340: no test for :spellinfoJan Edmund Lazo2018-11-12
|/ / | | | | | | | | | | Problem: No test for :spellinfo. Solution: Add a test. (Dominique Pelle, closes vim/vim#3394) https://github.com/vim/vim/commit/9049b686121367941bf534c041975938135c7e20
* | vim-patch:8.1.0516: :move command sets 'modified' #9224Jan Edmund Lazo2018-11-11
| | | | | | | | | | Problem: :move command marks buffer modified when nothing changed. Solution: Do not set 'modified'. Add a test. (Jason Franklin) https://github.com/vim/vim/commit/ddd1f9183bed00d096f29c503721ac559174a29f
* | Merge pull request #9193 from bfredl/scrollstuffBjörn Linse2018-11-11
|\ \ | | | | | | UI/TUI: improvements and cleanups for scrolling and clearing
| * | TUI: attrs -> attr_id refactorBjörn Linse2018-11-11
| | |
| * | UI/TUI: improvements and cleanups for scrolling and clearingBjörn Linse2018-11-11
|/ / | | | | | | | | | | | | | | | | | | | | | | - TUI: _never_ rely on BCE for implicit clearing, only explicit commands. - TUI: use unibi_erase_chars when possible. - TUI: use end-exclusive ranges for invalid and cleared areas - screen: scrolling leaves scrolled in aree undefined. This is a conservative change, a client assuming the old semantics will still behave correctly. - screen: factor out vsep handling from line drawing. This is needed anyway for the multigrid refactor. - screen: simplifications of win_do_lines
* | test: adjust time-sensitive tests (#9220)Justin M. Keyes2018-11-10
| | | | | | | | | | | | | | | | | | | | | | | | | | - window_split_tab_spec.lua: Put cursor at bottom of :terminal buffer so that it follows output. - inccommand_spec.lua: Increase timeout to allow 2nd retry. - Timer tests are less reliable on Travis CI macOS 10.12/10.13. ref #6829 ref e39dade80b02 ref de13113dc16e ref https://github.com/neovim/neovim/pull/9095#issuecomment-429603452 > We don't guarantee that a X ms timer is triggered during Y ms sleep > for any X<Y, though I would expect the load to be really bad for this > to happen with X=10ms, Y=40ms.
* | vim-patch:8.1.0337: :file fails in quickfix command (#9215)Jan Edmund Lazo2018-11-09
| | | | | | | | | | | | Problem: :file fails in quickfix command. Solution: Allow :file without argument when curbuf_lock is set. (Jason Franklin) https://github.com/vim/vim/commit/379fb76b080521f7c09265ec3264b9e698923518
* | Merge pull request #9218 from bfredl/termbufBjörn Linse2018-11-08
|\ \ | | | | | | channel: avoid buffering output when only terminal and no callbacks are active
| * | channel: avoid buffering output when only terminal and no callbacks are activeBjörn Linse2018-11-08
|/ /
* | Merge pull request #9211 from bfredl/init_optionsBjörn Linse2018-11-08
|\ \ | | | | | | ui_options: also send when starting in --embed mode
| * | ui_options: also send when starting or from OptionSetBjörn Linse2018-11-08
| | | | | | | | | | | | needed after #9024 to receive options from init.vim
* | | jobstart(): Fix hang on non-executable cwd #9204Tommy Allen2018-11-07
|/ / | | | | | | | | | | | | * os/fs.c: add os_isdir_executable() * eval.c: fix hang on job start caused by non-executable cwd option * channel.c: assert cwd is an executable directory * test: jobstart() produces error when using non-executable cwd
* | Merge pull request #9206 from janlazo/vim-8.1.0510Justin M. Keyes2018-11-06
|\ \ | | | | | | vim-patch:8.1.{510,512}
| * | vim-patch:8.1.0512: 'helplang' default is inconsistent for C and C.UTF-8Jan Edmund Lazo2018-11-05
| | | | | | | | | | | | | | | | | | Problem: 'helplang' default is inconsistent for C and C.UTF-8. Solution: Don't accept a value unless it starts with two letters. https://github.com/vim/vim/commit/389ab7122bec99c11ad4ce6d87cc6f38a21e4e40
| * | vim-patch:8.1.0510: filter test fails when $LANG is C.UTF-8Jan Edmund Lazo2018-11-05
| | | | | | | | | | | | | | | | | | | | | Problem: Filter test fails when $LANG is C.UTF-8. Solution: Set 'helplang' to "en" for any C language. (Christian Brabandt, closes vim/vim#3577) https://github.com/vim/vim/commit/dcd71cbaedf75dd8e5c5a45c5c2e3ec7ee552dce
* | | vim-patch:8.1.0511: ml_get error when calling a function with a range (#9207)Jan Edmund Lazo2018-11-06
|/ / | | | | | | | | Problem: ml_get error when calling a function with a range. Solution: Don't position the cursor after the last line. https://github.com/vim/vim/commit/9e353b5265bd7fa103caf4e5a9b3c99f344f548e
* | build: relax find_package() version specJustin M. Keyes2018-11-06
| | | | | | | | | | | | | | We need a way to say "Lua 5.1.x" is required. "5.1 EXACT" does not match 5.1.5, so it's useless. https://github.com/neovim/neovim/pull/9197#discussion_r230962070
* | Merge #9112 'doc'Justin M. Keyes2018-11-05
|\ \
| * | doc: APIJustin M. Keyes2018-11-05
| | |
| * | doc: fix/remove broken tag referencesJustin M. Keyes2018-11-05
| | |
| * | build: `make helphtml`Justin M. Keyes2018-11-05
| | |
| * | doc: merge sponsor.txt into intro.txtJustin M. Keyes2018-11-05
| | | | | | | | | | | | | | | | | | Also mention how to donate to Nvim. closes #8603
| * | runtime: delete rrhelper.vimJustin M. Keyes2018-11-05
| | |
| * | docJustin M. Keyes2018-11-05
| | | | | | | | | | | | - update standard-plugin-list. closes #8388
| * | doc: manpageJustin M. Keyes2018-11-05
|/ / | | | | | | | | roff/mdoc reference: http://man7.org/linux/man-pages/man7/groff_mdoc.7.html
* | test/win: window_split_tab_spec: fix retry()Justin M. Keyes2018-11-05
| |
* | test/win: window_split_tab_spec: increase retry() timeJustin M. Keyes2018-11-05
| | | | | | | | The default timeout of 10s only allows 1 retry.
* | Merge #9197Justin M. Keyes2018-11-05
|\ \
| * | CI/AppVeyor: Avoid "warning" which causes non-zero retcodeJustin M. Keyes2018-11-05
| | | | | | | | | | | | | | | | | | ErrorActionPreference=stop will fail the script if this warning occurs. see https://github.com/open62541/open62541/issues/2068
| * | test/timer_spec: relax lower-boundJustin M. Keyes2018-11-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Test is unreliable on macOS 10.13. The lower-bound isn't central to the purpose of the test, so just relax it. ref https://github.com/neovim/neovim/pull/9095#issuecomment-429603452 > We don't guarantee that a X ms timer is triggered during Y ms sleep > for any X<Y, though I would expect the load to be really bad for this > to happen with X=10ms, Y=40ms. related: #6829
| * | test/win: retry unreliable SIGWINCH testJustin M. Keyes2018-11-04
| | |