diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-12-18 08:40:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-18 08:40:23 +0800 |
commit | 51c380238cd23c5e6e050dfb379ae6b30bef032c (patch) | |
tree | 042fb803194c25e9f7aa52ac4400d034efbb3071 /runtime | |
parent | 0dd933265ff2e64786fd30f949e767e10f401519 (diff) | |
parent | b7da54aa9e72a0c7684546439f078ed89ba16d0a (diff) | |
download | rneovim-51c380238cd23c5e6e050dfb379ae6b30bef032c.tar.gz rneovim-51c380238cd23c5e6e050dfb379ae6b30bef032c.tar.bz2 rneovim-51c380238cd23c5e6e050dfb379ae6b30bef032c.zip |
Merge pull request #31615 from zeertzjq/vim-9.1.0936
vim-patch:9.1.{0936,0941,0942}: ComplMatchIns highlight
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/colors/vim.lua | 1 | ||||
-rw-r--r-- | runtime/doc/motion.txt | 4 | ||||
-rw-r--r-- | runtime/doc/news.txt | 1 | ||||
-rw-r--r-- | runtime/doc/syntax.txt | 2 |
4 files changed, 6 insertions, 2 deletions
diff --git a/runtime/colors/vim.lua b/runtime/colors/vim.lua index 5b9309ab38..dd3e83c653 100644 --- a/runtime/colors/vim.lua +++ b/runtime/colors/vim.lua @@ -60,6 +60,7 @@ hi('PmenuMatch', { link = 'Pmenu' }) hi('PmenuMatchSel', { link = 'PmenuSel' }) hi('PmenuExtra', { link = 'Pmenu' }) hi('PmenuExtraSel', { link = 'PmenuSel' }) +hi('ComplMatchIns', { link = 'Normal' }) hi('Substitute', { link = 'Search' }) hi('Whitespace', { link = 'NonText' }) hi('MsgSeparator', { link = 'StatusLine' }) diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt index 41fcdc3e1b..284be09121 100644 --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -118,8 +118,8 @@ Note that when using ":" any motion becomes charwise exclusive. *inclusive-motion-selection-exclusive* When 'selection' is "exclusive", |Visual| mode is active and an inclusive motion has been used, the cursor position will be adjusted by another -character to the right, so that visual selction includes the expected text and -can be acted upon. +character to the right, so that the Visual selection includes the expected +text and can be acted upon. *forced-motion* FORCING A MOTION TO BE LINEWISE, CHARWISE OR BLOCKWISE diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index ad0835e80f..73704a143c 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -216,6 +216,7 @@ EDITOR • On Windows, filename arguments on the command-line prefixed with "~\" or "~/" are now expanded to the user's profile directory, not a relative path to a literal "~" directory. +• |hl-ComplMatchIns| shows matched text of the currently inserted completion. • |hl-PmenuMatch| and |hl-PmenuMatchSel| show matched text in completion popup. EVENTS diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index df4d0f7260..f5183e3247 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -5243,6 +5243,8 @@ PmenuMatch Popup menu: Matched text in normal item. Combined with *hl-PmenuMatchSel* PmenuMatchSel Popup menu: Matched text in selected item. Combined with |hl-PmenuMatch| and |hl-PmenuSel|. + *hl-ComplMatchIns* +ComplMatchIns Matched text of the currently inserted completion. *hl-Question* Question |hit-enter| prompt and yes/no questions. *hl-QuickFixLine* |