Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6378073
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:57:25+00:00 2026-05-25T01:57:25+00:00

In emacs, when you do a search, there will be one highlight color for

  • 0

In emacs, when you do a search, there will be one highlight color for all occurences in the buffer, and another color for the occurence that your cursor happens to be on. I was wondering if anyone knew about similar behavior in vim, a vim plugin, or even some ideas on how to accomplish it myself in vimscript.

(note, I already know about hl-IncSearch, which is close, but not what I am looking for)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T01:57:25+00:00Added an answer on May 25, 2026 at 1:57 am

    As far as I know there isn’t a built-in way to do what you want.

    If I were to try to implement it myself… Well one way you could do it is by overriding *, n and p and combining it with something like this function:

    noremap n n:call HighlightNearCursor()<CR>
    noremap p p:call HighlightNearCursor()<CR>
    noremap * *:call HighlightNearCursor()<CR>
    
    function HighlightNearCursor()
      if !exists("s:highlightcursor")
        match Todo /\k*\%#\k*/
        let s:highlightcursor=1
      else
        match None
        unlet s:highlightcursor
      endif
    endfunction
    

    I haven’t tested it out, so this isn’t a complete solution, but I think it is at least a viable approach.

    EDIT : You will probably have to set some custom highlight colours. This vimwiki page gives some information about that, although I remember seeing a terser example somewhere.

    EDIT AGAIN: Maybe a cleaner solution is to use Mark.vim in conjunction with the first technique. Then it would all boil down to something like:

    noremap n \nn\m
    noremap p \np\m
    noremap * \n*\m
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There appears to be many alternative Emacs auto completion mechanisms. Without an exhaustive search,
I am very familiar with emacs--and I realize that there is nothing that it
is it possible in emacs to search filename in a way that i type
Is there an easy way in Emacs to search and replace text in an
Is there a native Emacs Lisp function that behaves like strpos() in PHP ?
Emacs has a useful transpose-words command which lets one exchange the word before the
In emacs, I've read the following code snippet in simple.el : (frame-parameter frame 'buried-buffer-list)
Can Emacs support the concept of projects? That would be where several configuration options
How can I set Emacs gdb so that it shows the most recent command
Is there a way in Emacs to find out which other places in the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.