aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
| | | * fix: func_initJakub Łuczyński2020-02-13
| | | |
| | | * unstatic some functionsJakub Łuczyński2020-02-13
| | | |
| | | * moved more stuffJakub Łuczyński2020-02-13
| | | |
| | | * created header fileJakub Łuczyński2020-02-13
| | | |
| | | * moved functions to user_funcs.c (no code changes)Jakub Łuczyński2020-02-13
| | | |
| * | | Merge #12155 ':ls filter by terminal, lastused'Justin M. Keyes2020-04-26
| |\ \ \ | | |/ / | |/| |
| | * | vim-patch:8.1.2225: the "last used" info of a buffer is under usedRob Pilling2020-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: The "last used" info of a buffer is under used. Solution: Add "lastused" to getbufinfo(). List buffers sorted by last-used field. (Andi Massimino, closes vim/vim#4722) https://github.com/vim/vim/commit/52410575be50d5c40bbe6380159df48cfc382ceb
| | * | vim-patch:8.0.1651: cannot filter :ls output for terminal buffersRob Pilling2020-04-19
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Cannot filter :ls output for terminal buffers. Solution: Add flags for terminal buffers. (Marcin Szamotulski, closes vim/vim#2751) https://github.com/vim/vim/commit/0751f51a5b428805a8c1e9fe529693d032bec991
| | * | vim-patch:7.4.1988Rob Pilling2020-04-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: When updating viminfo with file marks there is no time order. Solution: Remember the time when a buffer was last used, store marks for the most recently used buffers. https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd As this is a viminfo fix, most of this is irrelevant - the patch has just been brought across for the creation and updating of buffer's `b_last_used` properties.
| * | | lint: use docstring style #12187Billy SU2020-04-26
| | | |
| * | | tui: improve support for GNU Screen (#12098)erw72020-04-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Wrapping it in DCS allows the following features to work with GNU Screen. - Changing the cursor style. - bracketed paste. - focus reporting.
| * | | Merge #12177 'folds: decrease reliance on globals'Justin M. Keyes2020-04-26
| |\ \ \
| | * | | helpers: fix FIXED_TEMP_ARRAYMatthieu Coudron2020-04-24
| | | | | | | | | | | | | | | | | | | | ...was using wrong macro argument.
| | * | | lint: fix linting issuesMatthieu Coudron2020-04-24
| | | | |
| | * | | extmark: introduce extmark_splice_colsMatthieu Coudron2020-04-24
| | | | | | | | | | | | | | | | | | | | to ease up notations.
| | * | | folds: decrease reliance on global 'curwin'Matthieu Coudron2020-04-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TODO in a future commit: - remains 2 instances of changed_lines that dont take into account buffer
| * | | | TUI: block signals on suspend #12180Kei Kamikawa2020-04-25
| | | | | | | | | | | | | | | fix #8075
| * | | | vim-patch:8.2.0638: MS-Windows: messages test failsJan Edmund Lazo2020-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: MS-Windows: messages test fails. Solution: Clear environment variables. https://github.com/vim/vim/commit/47a1a8baf9c8eb22b24f667e57a1dab579999a74
| * | | | vim-patch:8.2.0635: when using 256 colors DarkYellow does not show expected ↵Jan Edmund Lazo2020-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | color Problem: When using 256 colors DarkYellow does not show expected color. Solution: Use color 3 instead of 130. (Romain Lafourcade, closes vim/vim#5985) https://github.com/vim/vim/commit/e93c968f520ee8d6bc29ccc6e18055ac65e832b3
| * | | | version.c: update [ci skip] (#12084)Marvim the Paranoid Android2020-04-24
| |/ / /
| * | | treesitter: check for integer overflow (#12135)Thomas Vigouroux2020-04-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes treesitter calls for an invalid column within a line, checking that the column is actually valid and forcing the value avoids an integer overflow and an infinite sequence of invalid reads. Fixes #12131
| * | | terminal: Fix mouse coordinates issue (#12158)erw72020-04-21
| | | | | | | | | | | | | | | | | | | | | | | | Offsets of window were not taken into account when sending mouse coordinates to the terminal. Therefore, when nu or rnu is set, the mouse coordinates sent to the terminal were not correct. Change it to send the correct coordinates by subtract window offset from col.
| * | | Test on actual libuv version number, not on existence of symbol.Matěj Cepl2020-04-21
| | | | | | | | | | | | | | | | | | | | | | | | uv_stream_get_write_queue_size isn't a define, it's a function. It seems like this would always be shadowing the actual function name.
| * | | Make neovim building even with libuv 1.18.0Matěj Cepl2020-04-21
| | | | | | | | | | | | | | | | (found for example on openSUSE/Leap 15.*)
| * | | tui: Don't call uv_write without output (#12146)erw72020-04-20
| |/ / | | | | | | Fixes #11653, #11990. Check for cursor visibility to toggle uv_write call.
| * | Merge pull request #12047 from erw7/fix-resolve-on-windowsMatthieu Coudron2020-04-19
| |\ \ | | | | | | | | | | | | Change resolve() to resolve symbolic links on Windows Neovim worked the same way as vim for shortcuts, but didn't handle symbolic links and junction cases. This PR implements the same behavior for symbolic links and junctions as for vim.
| | * | Change to canonicalize only when reparse point in includederw72020-04-02
| | | |
| | * | Change resolve() to resolve symbolic links on Windowserw72020-04-02
| | | |
| * | | Merge pull request #12141 from vigoux/treesitter_fixMatthieu Coudron2020-04-18
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | [RFC] Update treesitter runtime Get rid of our utf8proc dependency Note that we unconditionnally escape treesitter queries, might need to be revisited.
| | * | | treesitter: remove utf8proc dependencyThomas Vigouroux2020-04-18
| | | | |
| | * | | treesitter: update vendor codeThomas Vigouroux2020-04-18
| | | | | | | | | | | | | | | | | | | | | | | | | Update treesitter vendor code to commit 35f82ce301951315e08de3b7e44a18c9170b28b8
| * | | | vim-patch:8.2.0589: .bsd file type not recognizedJan Edmund Lazo2020-04-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: .bsd file type not recognized. Solution: Recognize .bsd as BSDL. (Daniel Kho, closes vim/vim#5945) https://github.com/vim/vim/commit/0fc1288aefce25da0a2fb2a0aab75b0bd314403f
| * | | | vim-patch:8.2.0584: viminfo file uses obsolete function file_readable()Jan Edmund Lazo2020-04-17
| |/ / / | | | | | | | | | | | | | | | | | | | | Problem: Viminfo file uses obsolete function file_readable(). Solution: Use filereadable(). (closes vim/vim#5934) https://github.com/vim/vim/commit/c5f33db888d14225e5a3851563c9a7fc0b5a5564
| * | | folds: decrease reliance on global "curwin" (#12132)Matthieu Coudron2020-04-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pass the window in which to create/delete folds instead of using the global "curwin" (current window). Preliminary work for a fold API. TODO: I kept changed_lines prototype unchanged. This should be updated when a fold API sees the light.
| * | | Merge pull request #12005 from erw7/fix-screen-vsplitJames McCoy2020-04-15
| |\ \ \ | | | | | | | | | | Closes #11998
| | * | | Fix screen terminal family issueserw72020-03-12
| | | | |
| | * | | Fix splitting issue on gnu screenerw72020-03-12
| | | | | | | | | | | | | | | | | | | | | | | | | gnu screen does not have smglr, but it inherits smglr from xterm and splitting will cause drawing problems. So disable smglr.
| * | | | vim-patch:8.2.0575: :digraph! not testedJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: :digraph! not tested. Solution: Add a test. (Dominique Pelle, closes vim/vim#5925) https://github.com/vim/vim/commit/e3242346cf1c2ff8b0315cb2cb98e731bfa952c0
| * | | | Suppress Microsoft copyright banner. (#12114)Doug Richardson2020-04-14
| | | | |
| * | | | Use libnvim as OUTPUT_NAME for libnvim (#12119)Doug Richardson2020-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | libnvim's OUTPUT_NAME was nvim, which caused the cmake Ninja generator to generate two build rules for the library, which produced a warning about incorrect builds.
| * | | | TUI: support setting cursor color in tmux (#12100)Thomas Churchman2020-04-14
| | | | |
| * | | | vim-patch:8.2.0549: user systemd files not recognizedJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: User systemd files not recognized. Solution: Add filetype patterns. (Kevin Locke, closes vim/vim#5914) https://github.com/vim/vim/commit/3b922f11380c7dbf94ee45bc09d688b772d9707f
| * | | | vim-patch:8.2.0544: memory leak in search testJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Memory leak in search test. Solution: Free msgbuf. (Dominique Pelle, closes vim/vim#5912) https://github.com/vim/vim/commit/880e4d9117ea990e66d867aefad0f73ba89bda82
| * | | | vim-patch:8.2.0507: getbufvar() may get the wrong dictionaryJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Getbufvar() may get the wrong dictionary. (David le Blanc) Solution: Check for empty name. (closes vim/vim#5878) https://github.com/vim/vim/commit/5259275347667a90fb88d8ea74331f88ad68edfc
| * | | | vim-patch:8.2.0473: variables declared in an outer scopeJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Variables declared in an outer scope. Solution: Decleare variables only in the scope where they are used. https://github.com/vim/vim/commit/8601545338581c01e328cdc3a72c0b12d92c54cf
| * | | | vim-patch:8.2.0134: some map functionality not covered by testsJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Some map functionality not covered by tests. Solution: Add tests. (Yegappan Lakshmanan, closes vim/vim#5504) https://github.com/vim/vim/commit/8ba6bb7c94229f1e6f85ea5152ed8b4fbbbd9d20
| * | | | vim-patch:8.2.0474: cannot use :write when using a plugin with BufWriteCmdJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Cannot use :write when using a plugin with BufWriteCmd. Solution: Reset BF_NOTEDITED after BufWriteCmd. (closes vim/vim#5807) https://github.com/vim/vim/commit/0fff44152d06e6b662ad4bef172af07a041d2f3f
| * | | | vim-patch:8.2.0464: typos and other small problemsJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Typos and other small problems. Solution: Fix the typos. Add missing file to distribution. https://github.com/vim/vim/commit/2d9d409ad4fab1ae7ceaecc0ef0e9b511d868374
| * | | | vim-patch:8.2.0457: Test_quotestar() often fails when run under valgrindJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Test_quotestar() often fails when run under valgrind. Solution: Wait longer for the GUI to start. https://github.com/vim/vim/commit/26bde6e2eb307898ab7ed42bf8e7e2ccde979e02
| * | | | vim-patch:8.1.1745: compiler warning for unused argumentJan Edmund Lazo2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Compiler warning for unused argument. Solution: Add UNUSED. Change comments to new style. https://github.com/vim/vim/commit/1f164b19685d8ad709b11f3f1933685469251e30