Question Details

No question body available.

Tags

vim neovim

Answers (13)

May 14, 2026 Score: 1 Rep: 200,080 Quality: Low Completeness: 40%

What do you find confusing? How the matching parenthesis is highlighted or the fact that it is highlighted?

If the former, then you can override specific highlight groups as per :help colorscheme-override.

If the latter, then you can disable the functionality by adding this to your vimrc:

let loaded_matchparen = 1

as per :help matchparen.

I have no idea if any the above works in Neovim.

May 14, 2026 Score: 1 Rep: 1,059 Quality: Low Completeness: 50%

I suspect that the problem is not with the matching parenthesis colorization but with your Cursor colorization.

Is your cursor always black with that color scheme?

What is the result of the following command:

hi Cursor

I'm using Neovim 0.11.7 and my cursor with the slate color scheme is white and not black :-|

enter image description here

If I hit : to switch to command mode both matching parenthesis are yellow.

enter image description here

May 14, 2026 Score: 1 Rep: 1 Quality: Low Completeness: 30%

It doesn't change the highlighting of parentheses. It seems that the current parenthesis is not matched by the group Cursor.

May 14, 2026 Score: 1 Rep: 1 Quality: Low Completeness: 40%

Oh, sorry I didn't read your message until the end.

I entered :help matchparen and read the documentation. I've tried the suggested command. In particular, I've entered let matchparendisablecursor_hl = 1 and now the parenthesis under my cursor is displayed in a readable manner.

I don't understand what happened, but at least I can now browse parentheses in normal/visual mode with no issue. Thank you!

May 14, 2026 Score: 1 Rep: 5,687 Quality: Low Completeness: 30%

Is this supposed to be an answer to your question on staging ground?

Please don't answer unrelated questions. Instead, improve your question on SG until it's approved. Then you can self-answer. Make sure to explain how the answer solves the problem.

May 14, 2026 Score: 0 Rep: 1 Quality: Low Completeness: 40%

The baground color of the current character is white when it's not placed on a parenthesis.

Here's what happens when try to get the color of the cursor:

:hi Cursor Cursor xxx cleared
May 14, 2026 Score: 0 Rep: 1 Quality: Low Completeness: 10%

My issue is that the parenthesis where my cursor is placed is under-highlighted (with a black background), so my attention is driven to the matched parenthesis (that is displayed with a yellow background). It's hard to understand where my cursor is placed.

May 14, 2026 Score: 0 Rep: 1,059 Quality: Low Completeness: 30%

Could you try:

hi Cursor guifg=#333333 guibg=#d7d778
May 14, 2026 Score: 0 Rep: 1 Quality: Low Completeness: 60%
    

Fruits

Create Fruit

@forelse($fruits as $fruit) @empty @endforelse

Name Price Stocks Availability Actions
{{ $fruit->name }} {{ $fruit->priceperkg }} {{ $fruit->stock_quantity }} {{ ucfirst($fruit->availability) }} View Edit

@csrf @method('DELETE')

Delete

May 14, 2026 Score: 0 Rep: 1 Quality: Low Completeness: 60%

You need to do this code if you want

SHOW

← Go Back

Fruit Details

Name

{{ $fruit->name }}

Category

{{ $fruit->category }}

Price/kg

{{ $fruit->priceperkg }}

Stock Quantity

{{ $fruit->stock_quantity }}

Availability

{{ ucfirst($fruit->availability) }}

Description

{{ $fruit->description }}

EDIT

← Go Back

Edit Fruit

@csrf @method('PUT')

Name

Category

Citrus Berry

Price/kg

Stock Quantity

Availability

Available Out of stock

Description {{ old('description', $fruit->description ?? '') }}

Save

May 14, 2026 Score: 0 Rep: 1 Quality: Low Completeness: 60%

Also this when you create a group and reconfiguring you need this also

Fruits

Create Fruit

@forelse($fruits as $fruit) @empty @endforelse

Name Price Stocks Availability Actions
{{ $fruit->name }} {{ $fruit->priceperkg }} {{ $fruit->stock_quantity }} {{ ucfirst($fruit->availability) }} View Edit

@csrf @method('DELETE')

Delete

May 14, 2026 Score: 0 Rep: 990 Quality: Low Completeness: 0%

How does this answer relate to the question?

May 14, 2026 Score: 0 Rep: 1 Quality: Low Completeness: 20%

this is a solution for all of us