0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

Runtime files update

This commit is contained in:
Bram Moolenaar 2022-07-07 22:31:59 +01:00
parent 32acf1f1a7
commit fee0c4aa99
4 changed files with 12050 additions and 6951 deletions

View File

@ -679,6 +679,9 @@ Of these three, Vim uses PRIMARY when reading and writing the "* register
|'clipboard'| of "autoselect"), and CLIPBOARD when reading and writing the "+ |'clipboard'| of "autoselect"), and CLIPBOARD when reading and writing the "+
register. Vim does not access the SECONDARY selection. register. Vim does not access the SECONDARY selection.
This applies both to the GUI and the terminal version. For non-X11 systems
the plus and the star register both us the system clipboard.
Examples: (assuming the default option values) Examples: (assuming the default option values)
- Select a URL in Visual mode in Vim. Go to your browser and click the - Select a URL in Visual mode in Vim. Go to your browser and click the
middle mouse button in the URL text field. The selected text will be middle mouse button in the URL text field. The selected text will be

View File

@ -74,10 +74,10 @@ Update list of features to vote on:
- Change "add IDE features" to "improve terminal debugger" - Change "add IDE features" to "improve terminal debugger"
- Change "diff/merge capability for CVS" to "CVS and git" - Change "diff/merge capability for CVS" to "CVS and git"
- Remove "pre-compile them" from "improve the performance of Vim scripts" - Remove "pre-compile them" from "improve the performance of Vim scripts"
- multiple cursors - Add: multiple cursors, edit text in more than one place at a time
- built-in LSP support - Add: fast syntax highlighting with parser instead of regex patterns
- virtual text, using text properties - Add: virtual text, text properties can insert text in the line
- start first line halfway, scroll per screen line - Add: start first line halfway, scroll per wrapped screen line
Popup windows: Popup windows:
- Preview popup not properly updated when it overlaps with completion menu. - Preview popup not properly updated when it overlaps with completion menu.
@ -3758,7 +3758,9 @@ Printing:
Syntax highlighting: Syntax highlighting:
Long term goal: faster, better, etc. Options: Long term goal: faster, better, etc. Options:
- use treesitter, NeoVim uses it - Many people don't like it. - use treesitter, NeoVim uses it - Many people don't like it.
- use TextMate, vscode uses it. #9087 - possibly a long term solution - use TextMate, vscode uses it. #9087 - Other people don't like it.
Vscode is asked to switch to treesitter:
https://github.com/microsoft/vscode/issues/50140
8 Make ":syn off" use 'runtimepath' instead of $VIMRUNTIME. (Gary Johnson) 8 Make ":syn off" use 'runtimepath' instead of $VIMRUNTIME. (Gary Johnson)
Should do the same for ":syn on" and ":syn manual". Should do the same for ":syn on" and ":syn manual".
8 Support "containedin" argument for ":syn include", so that the defined 8 Support "containedin" argument for ":syn include", so that the defined

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff