aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge pull request #14088 from janlazo/vim-8.2.2577Jan Edmund Lazo2021-03-09
|\ | | | | vim-patch:8.1.0783,8.2.{1507,2152,2438,2577}
| * vim-patch:8.2.2438: out of bounds compiler warningJan Edmund Lazo2021-03-09
| | | | | | | | | | | | | | | | | | Problem: Out of bounds compiler warning. Solution: Increase the size of uf_name. https://github.com/vim/vim/commit/6a12e3342d84a1d754d793ed5019778bd60e7494 Do not set size of uf_name to avoid compiler warnings. Port only the comments.
| * vim-patch:8.2.1507: using malloc() directlyJan Edmund Lazo2021-03-09
| | | | | | | | | | | | | | Problem: Using malloc() directly. Solution: Use ALLOC_ONE(). Remove superfluous typecast. (Hussam al-Homsi, closes vim/vim#6768) https://github.com/vim/vim/commit/51b6eb47b3c41b01a5559b099e65354c8897093e
| * vim-patch:8.2.2577: compiler warning for type conversionJan Edmund Lazo2021-03-09
|/ | | | | | | | | | | | | | | | | | | | | | | | | Problem: Compiler warning for type conversion. Solution: Add a typecast. (Mike Williams) https://github.com/vim/vim/commit/9355ae41497cbcce58ddd79f9125eb3e9dfe0a43 N/A patches for version.c: vim-patch:8.1.0783: compiler warning for signed/unsigned Problem: Compiler warning for signed/unsigned. Solution: Add type cast. Change type of buffer. (Ozaki Kiichi, closes vim/vim#3827) https://github.com/vim/vim/commit/63c0ccd2b68ce854f294e6f149cc700c7f543674 Neovim was refactored to prefer char type for string functions, not char_u. vim-patch:8.2.2152: screenpos() does not include the WinBar offset Problem: screenpos() does not include the WinBar offset. Solution: Use W_WINROW() instead of directly using w_window. (closes vim/vim#7487) https://github.com/vim/vim/commit/8dd46e72cfb13b8de793c808ee009c45e881903a W_WINROW() was removed so port only the test changes. The test is currently skipped.
* Merge pull request #13875 from smolck/vim_fn_error_on_apiBjörn Linse2021-03-09
|\ | | | | vim.fn: throw error when trying to use API function
| * use pcall_errsmolck2021-03-09
| |
| * Fix unused varargsmolck2021-02-06
| |
| * vim.fn: add test for errorsmolck2021-02-04
| |
| * remove extra line, remove () in errorsmolck2021-02-04
| |
| * vim.fn: throw error when trying to use API functionsmolck2021-02-03
| |
* | Merge pull request #13686 from bfredl/fasteventBjörn Linse2021-03-08
|\ \ | | | | | | state: throttle batched event processing when input is available
| * | state: throttle batched event processing when input is availableBjörn Linse2021-03-08
|/ / | | | | | | | | | | | | before, calling vim.schedule() from inside an event would execute the scheduled callback immediately after this event without checking for user input in between. Break event processing whenever user input or an interrupt is available.
* | Merge pull request #14070 from janlazo/vim-8.2.2564Jan Edmund Lazo2021-03-07
|\ \ | | | | | | vim-patch:8.1.1016,8.2.{890,1513,1805,2345,2564}
| * | vim-patch:8.2.1513: cannot interrupt shell used for filename expansionJan Edmund Lazo2021-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Cannot interrupt shell used for filename expansion. (Dominique Pellé) Solution: Do set tmode in mch_delay(). (closes vim/vim#6770) https://github.com/vim/vim/commit/0981c8729e09551f2e8e6c159bc29f2c1d04019c Neovim does not run settmode() in os_delay() so this patch is mostly N/A. Do not port Vim's flags (ie. MCH_DELAY_SETTMODE) for mch_delay().
| * | vim-patch:8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptionsJan Edmund Lazo2021-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: MS-Windows: No color in shell when using "!" in 'guioptions. Solution: Don't stop termcap when using a terminal window for the shell. (vim-jp, closes vim/vim#4117) https://github.com/vim/vim/commit/049ca59236d5a981f23cf5dfe40f54536fe7cad2 N/A patches for version.c: vim-patch:8.2.0890: no color in terminal window when 'termguicolor' is set Problem: No color in terminal window when 'termguicolor' is set. Solution: Clear the underline color. (closes vim/vim#6186) https://github.com/vim/vim/commit/1e5f8f6d65b2ecff3d93d9fdbdd17c7a2ab9cc3d vim-patch:8.2.1805: Unix: terminal mode changed when using ":shell" Problem: Unix: terminal mode changed when using ":shell". Solution: Avoid calling settmode() when not needed. (issue vim/vim#7079) https://github.com/vim/vim/commit/80361a5f2b134c88597d60b3d363b52084e712a1 vim-patch:8.2.2345: no focus events in a terminal Problem: No focus events in a terminal. Solution: Add the t_fd and t_fe termcap entries and implement detecting focus events. (Hayaki Saito, Magnus Groß, closes vim/vim#7673, closes vim/vim#609, closes vim/vim#5526) https://github.com/vim/vim/commit/681fc3fa782e99fe69ed2c83c3e29109d2d61e1a vim-patch:8.2.2564: focus events end Insert mode if 'esckeys' is not set Problem: Focus events end Insert mode if 'esckeys' is not set. Solution: Do not enable focus events when 'esckeys' is off. (closes vim/vim#7926) https://github.com/vim/vim/commit/51b477f74f0de11f6f92a65590f358e04a60a099
* | | Merge pull request #13993 from teto/gendocMatthieu Coudron2021-03-07
|\ \ \ | | | | | | | | improve vimdoc generation
| * | | more generic shebang for lua2dox_filterMatthieu Coudron2021-03-04
| | | | | | | | | | | | | | | | previous one was not working/ or use /bin/sh
| * | | fix: section_name must be a dict {filename:name}Matthieu Coudron2021-03-04
| | | | | | | | | | | | | | | | else it was triggering an error during regeneration of the files.
| * | | chore: rename progress_callback to progress_handlerMatthieu Coudron2021-03-04
| | | |
| * | | fix(flake): can now generate vimdocMatthieu Coudron2021-03-04
| | | | | | | | | | | | | | | | | | | | | | | | and removed warning about deprecated usage of stdenv.lib also can run `make pylint shlint`.
* | | | Merge pull request #13004 from jgehrig/jg-neovim-qt-runtimeerw72021-03-07
|\ \ \ \ | |_|/ / |/| | | fix Windows missing QtSVG DLL
| * | | Issue 12928: Windows missing QtSVG DLLJohn Gehrig2021-02-16
| | | | | | | | | | | | | | | | | | | | We should copy the entire output of windeployqt. Currently several DLLs are missing including one required to display the window icon.
* | | | Merge pull request #13919 from TheAlakazam/lsplogfixMichael Lingelbach2021-03-06
|\ \ \ \ | | | | | | | | | | fix: fix empty line in lsp log after each run
| * | | | lsp: add explicit entry on lsp log startPiyush Jaipuriyar2021-03-06
| | | | | | | | | | | | | | | | | | | | fix: address typo and review comments
* | | | | Merge pull request #14052 from phaazon/fix/typoBjörn Linse2021-03-06
|\ \ \ \ \ | | | | | | | | | | | | Fix a typo in the Lua documentation for nvim_add_highlight().
| * | | | | Fix a typo in the Lua documentation for nvim_create_namespace().Dimitri Sabadie2021-03-04
| | | | | |
* | | | | | Merge pull request #14066 from LeeWannacott/clarify-nvim-putBjörn Linse2021-03-06
|\ \ \ \ \ \ | | | | | | | | | | | | | | Clarify that nvim_put()'s {after} and {follow} parameters expect boolean values true, or false.
| * | | | | | Added If true to show that {after} and {follow} parameters of nvim_put() are ↵Lee Wannacott2021-03-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | expecting boolean values
| * | | | | | Forgot to add colon to the {follow} parameters statementLee Wannacott2021-03-07
| | | | | | |
| * | | | | | Clarify that nvim_put()'s {after} and {follow} parameters expect boolean ↵Lee Wannacott2021-03-07
|/ / / / / / | | | | | | | | | | | | | | | | | | values true, or false.
* | | | | | Merge pull request #13793 from mjlbach/fix_terminating_eol_diagnosticMichael Lingelbach2021-03-05
|\ \ \ \ \ \ | | | | | | | | | | | | | | [RDY] lsp: fix diagnostic reported on terminating EOL character
| * | | | | | lsp: fix diagnostic reported on terminating EOL characterMichael Lingelbach2021-03-02
| | | | | | |
* | | | | | | Merge pull request #14048 from saadparwaiz1/runtime/haskellJan Edmund Lazo2021-03-04
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Update Runtime Files For Haskell
| * | | | | | | runtime/haskell: 4f4d51a942cc2c6b3e936ee0f93f00c2d000065cSaad Parwaiz2021-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | port syntax file only
| * | | | | | | runtime/haskell: 8fe1000e9c3438d0ff36cf2340f0f0e48f8fb89fSaad Parwaiz2021-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | port haskellcomplete file only
| * | | | | | | runtime/cabal: 23515b4ef7580af8b9d3b964a558ab2007cacda5Saad Parwaiz2021-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | port cabal, cabalconfig, cabalproject syntax file
| * | | | | | | runtime/cabal: 4f4d51a942cc2c6b3e936ee0f93f00c2d000065cSaad Parwaiz2021-03-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | port cabal syntax file only
* | | | | | | | Merge pull request #14059 from mjlbach/fix/no_notification_lsp_sigtermMichael Lingelbach2021-03-04
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | lsp: don't invoke vim.notify on sigterm of language server
| * | | | | | | | lsp: don't invoke vim.notify on sigterm of language serverMichael Lingelbach2021-03-04
|/ / / / / / / /
* | | | | | | | Merge pull request #14047 from mjlbach/feature/notify_on_crashMichael Lingelbach2021-03-04
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | lsp: invoke vim.notify when client exits with code or signal other than 0
| * | | | | | | | lsp: invoke vim.notify when client exits with code or signal other than 0Michael Lingelbach2021-03-04
| | |/ / / / / / | |/| | | | | |
* | | | | | | | [RDY] Fix click on foldcolumn if it has tabline (#13982)tk-shirasaka2021-03-04
| |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix click on foldcolumn if it has tabline * Fixes to correctly determine if tablie was clicked when multigrid is enabled * Separate foldcolumn checks into functions * Add test case for click on foldcolumn with split window * Fix foldcolumn click used nvim_input() on multigrid enabled
* | | | | | | vim-patch:30e9b3c42567 (#13936)Volodymyr Kot2021-03-03
| |_|/ / / / |/| | | | | | | | | | | | | | | | | Update runtime files https://github.com/vim/vim/commit/30e9b3c4256710781c3bd64efb33f138e4e074b3
* | | | | | Merge pull request #13973 from chentau/on_bytes_undofileBjörn Linse2021-03-03
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | New versions of neovim will not read undofiles written by nvim before this merge (there will be an error message about incopmatible version). Nvim 0.4 (or an master up to bda12927be84f0e0e05e885f9acb40a7ac2c5524 ) can be used to recover older undofiles, so if you worried about unsaved changes lurking around in undofiles it would make sense to keep such version around somewhere to recover them. This is a necessary change to keep tree-sitter and plugins dependent on byte-level buffer change events fully working with undo states from a undofile. If there is a clear demand we might implement reading of the old format. Such recovered buffers will not be be fully functional with plugins relying on buffer updates or tree-sitter, however.
| * | | | | Extmarks: Save extmark undo information to undofile.chentau2021-03-02
| | | | | |
* | | | | | Merge pull request #14041 from janlazo/vim-8.2.2560Jan Edmund Lazo2021-03-02
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | vim-patch:8.1.{680,1901},8.2.{1043,2196,2236,2551.2559,2560}
| * | | | | vim-patch:8.2.1043: %a item in 'statusline' not testedJan Edmund Lazo2021-03-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: %a item in 'statusline' not tested. Solution: Add a test. (Dominique Pellé, closes vim/vim#6318) https://github.com/vim/vim/commit/4014e2ceb03b8aeb947a0c671a099b677c8f2d5d Do not run test_statusline.vim in test_alot.vim because test_statusline.vim runs separately in Vim since patch v8.2.0164.
| * | | | | vim-patch:8.2.2236: 'scroll' option can change when setting the statuslineJan Edmund Lazo2021-03-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: 'scroll' option can change when setting the statusline or tabline but the option context is not updated. Solution: Update the script context when the scroll option is changed as a side effect. (Christian Brabandt, closes vim/vim#7533) https://github.com/vim/vim/commit/746670604a60cb0356b56c112ffb6d297c679099
| * | | | | vim-patch:8.1.1901: the +insert_expand feature is not always availableJan Edmund Lazo2021-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: The +insert_expand feature is not always available. Solution: Graduate the +insert_expand feature. https://github.com/vim/vim/commit/e2c453d38f6512ac4cff7cd26aa7780b4e2534d7
| * | | | | vim-patch:8.2.2560: setting 'winminheigt' does not take tabline into accountJan Edmund Lazo2021-03-01
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Setting 'winminheigt' does not take tabline into account. Solution: Subtract the tabline from the available height. (closes vim/vim#7899) https://github.com/vim/vim/commit/39d4cab494248131b6fb07aba633aa4da7871a57 N/A patches for version.c: vim-patch:8.1.0680: not easy to see what features are unavailable Problem: Not easy to see what features are unavailable. Solution: Highlight disabled features in the :version output. (Nazri Ramliy, closes vim/vim#3756) https://github.com/vim/vim/commit/c85ffc9daba6f66d5958ae80249d26f7f81bfced vim-patch:8.2.2196: :version output has extra spaces in compile and link command Problem: :version output has extra spaces in compile and link command. Solution: Adjust QUOTESED. (closes vim/vim#7505) https://github.com/vim/vim/commit/abcbb0e9ad43fc25077e1681528e72ddcbeed300 vim-patch:8.2.2551: MS-Windows: colors test file is not installed Problem: MS-Windows: colors test file is not installed. Solution: Also copy runtime/colors/tools. (Ken Takata, closes vim/vim#7902) https://github.com/vim/vim/commit/d0bce504ec52def729fffa35c8896979af348d32 vim-patch:8.2.2559: MS-Windows: guifont test fails on Windows XP Problem: MS-Windows: guifont test fails on Windows XP. Solution: Check windowsversion(). https://github.com/vim/vim/commit/3650fd709807d5ac182e28d952cbd790c1ad0a6a