pkulchenko / ZeroBraneStudio

Lightweight Lua-based IDE for Lua with code completion, syntax highlighting, live coding, remote debugger, and code analyzer; supports Lua 5.1, 5.2, 5.3, 5.4, LuaJIT and other Lua interpreters on Windows, macOS, and Linux
http://studio.zerobrane.com/
Other
2.6k stars 519 forks source link

Is it possible to style other instances of the current selection? #1131

Closed jaykyburz closed 2 years ago

jaykyburz commented 2 years ago

For example if I have the word "self" is selected, all instance of self in the current file have an "indicator" applied.

I have found it useful for quickly spotting typos in Sublime Text.

moteus commented 2 years ago

Its possible with plugin I use this one findtext.lua. This is port from one developed for SciTE with some additions It looks like image

pkulchenko commented 2 years ago

@jaykyburz, as @moteus wrote, there are plugins that do this. Use the one he referenced or the one in the package repository (highlightselected).

jaykyburz commented 2 years ago

perfect thanks folks.