Pulsar-Edit-Highlights / selected

@Pulsar-Edit package for highlighting occurrences of your selection.

Home Page:https://web.pulsar-edit.dev/packages/highlight-selected

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Option to highlight one-letter variables

vkotovv opened this issue · comments

Example (C++ code):

std::vector<std::string> v;
// more code here
return v;

It will not highlight the occurences of v variable if I select it (I guess because it is not a word). But it will be good if there is an option to highlight one-char variables too.

There is a setting Minimum Length. The default is 2 characters, you can change it to 1. But that might have performance issues.

@richrace Thanks for the info.