3,818 questions
Best practices
1
vote
1
replies
79
views
How to isolate missing values entered as zeroes in a SQL dataset?
I have a dataset in SQL containing missing values, in place of each missing value is a zero.
How can I find all the zeroes, being used to substitute missing values and highlight them.
Finally, I ...
0
votes
0
answers
62
views
Double highlight in Flutter Web
When highlighting texts in Textfield => It shows two highlights and when scrolling, the other highlights remain at the same position
When highlighting texts:
When scrolling:
This only happens on ...
2
votes
1
answer
47
views
Emphasizing asciidoctor literal parts
I'd like to to highlight a part of a literal/listing/source block "manually" in AsciiDoctor. Is there any way to do so?
E.g. I'd like to add a class or just a single "strong/b" to ...
0
votes
0
answers
95
views
Highlight text while matching the words in audio with the words in text in react native
I have an audio playing and i want to highlight the text below it matching the exact word on the audio using react native.
I think on splitting the whole text by space, and creating an array of words. ...
0
votes
0
answers
61
views
Javafx 21 modena.css highlighted text bug
I am trying to style my Javafx 21 program through a css file. I noticed that when the background color is bright colors in the selected text, the text color does not change and remains white in ...
0
votes
1
answer
115
views
How to change the font color or highlight a string in between to asterisks in python?
My df has 19 columns but for simplicity the df will have the following columns [['Gene_name','Genes_in_same_transcription_unit']]
The column 'Gene_name' list a bunch of genes in E. coli and the ...
1
vote
1
answer
214
views
How to highlight selected text in a rich text editor when the selection spans multiple HTML tags?
I'm implementing text highlighting functionality in a custom text editor using vanilla javascript, similar to how MS Word highlights text. The issue I'm encountering is that when a user selects text ...
0
votes
1
answer
100
views
Apps Script getRange.setBackgroundRGB not firing
In response to google form submission I have a script triggered to do some data checking, and highlight two possible data issues in the appropriate cells of the sheet attached to the form, as well as ...
1
vote
0
answers
95
views
How can I implement highlight.js in my react-quill?
I used code-block module in react quill but I want to add highlight to tag with inner code tag. I want to add class for different programming language, but Just after I am entering something in my ...
0
votes
0
answers
79
views
Visual Studio Highlighting Variable Declarations
My apologies if this has already been asked and answered but I have searched for an answer and cannot find what I am looking for despite always feeling like I am close yto the solution.
I am using ...
1
vote
1
answer
698
views
Red highlighted tabs in Cursor
I have this issue where I get this weird red highlighted tabs in Cursor. I alredy set "highlight active indentation" to false in "preferences > VS Code settings", which helped ...
1
vote
1
answer
178
views
White unreadable text highlighting in vs code jupyter notebook
When I select text to delete or copy and start typing after I deleted the selected text the editor is stuck in this weird highlighted mode where everything I type is white and unreadable. I can escape ...
0
votes
1
answer
42
views
Document.createRange around multiple text matches gives IndexSizeError
I am writing a search engine and ran into a problem. I use document.createRange to select the matches and I used the AND operator.
I have the following text, it is Hungarian colors where half of it is ...
0
votes
0
answers
97
views
Highlight full comment that contains keyword in custom color
I want to highlight a comment with a custom color when the comment contains a specified keyword, e.g. todo.
I want to highlight the entire comment, not just the keyword itself.
How to do that in VS ...
1
vote
1
answer
190
views
Remove firefox form field highlight?
I'm having this problem with firefox form fields. They're suddenly highlighting in bright, ugly blue, and I'm trying to get it back to the original, more clean dotted line. Actually, at this point, ...
0
votes
1
answer
50
views
highlight rows for different values in excel
I have
I want to highlight each row that has a different value to the one above it in a different colour. Makes it easier to view all the category 3, for example, especially when I have lots of ...
-1
votes
1
answer
48
views
Change color of matched text in react, nextjs
I want to change color of matched text dynamically, for this the following code for Urdu text not working and not changing the color of matched text, while for English text it's working perfectly. Any ...
2
votes
0
answers
552
views
Is there a way to get highlight group of the char under the cursor in (neo)vim?
In a plaintext buffer I have many words highlighted by :call matchadd(<group>, <pattern>) in different highlight groups. Is there a way to get the group name of cursor char?
:hlID()does ...
0
votes
1
answer
80
views
Vim words syntax highlighting
How can I in Vim highlight, e.g., the first 10 words in a line ?
I have found in Stackoverflow the answer for the first word :
/^\s*\w\+/
but I cannot figure how to tinker it for 10 words, or any ...
0
votes
1
answer
53
views
Pycharm how to double-click highlighting for markdown?
In pycharm, if I double click a token in a window that displays python code, the token gets highlighted at every place in the window. It also gets highlighted in the gutter which makes it easy to ...
-1
votes
1
answer
83
views
ElasticSearch highlight with number of pragments
In ElasticSearch, when specify number_of_fragments to 0 to retrieve all content of field, i see that it highlights all the token matched with the search term and it's wrong when the search term can be ...
1
vote
1
answer
103
views
How to get rid of 'undefined' warnings due to abnormal file importing
I'm coding a project for the Picotron (an advanced version of Pico-8) in the Lua language in VSCode. I have imported my files properly using 'include ' and the code works when I run it. My problem is ...
0
votes
0
answers
84
views
Inadequate highlighting in code's output cells in an IPython notebook in VSCode
I am using VSCode to edit and run my IPython notebooks.
Upon using them, I wanted to preserve the coloring of some magic commands like !grep when I used them. Thanks to this question here on SE, I ...
0
votes
1
answer
412
views
Highlight with color selected text in an ms access textbox using vba
In an ms access rich text textbox I can select any part of the text and a dialog box shows up then I can click a color on the highlight dropdown box and the text is highlighted. I want to be able to ...
0
votes
1
answer
150
views
How to highlight mismatching values between sheets in Tableau?
I have two sheets in Tableau that both contain a list of names. I want to highlight the mismatching values (or even matching values if that's easier) between the sheets. Both sheets use the same data ...
1
vote
3
answers
127
views
Highlight specific x-axis elements in ggplot2 by drawing a circle around them
I have a sequence myseq associated to some data that I want to plot. Besides, I have another sequence checkseq that I want to compare myseq to.
The objective is to make a plot like the one below (with ...
1
vote
0
answers
192
views
CSS Custom Highlight API with underlined text on Safari
I'm working on a project where users can highlight content by selecting text and choosing a highlight style. I'm using the CSS Custom Highlight API, which is relatively new in terms of browser support....
0
votes
0
answers
155
views
How to implement mention/hashtag highlight in input/textarea in react?
Just like whatsapp have this feature, where when we mention user with "@" in input it gets highlighted and rest of the text remain same!
how can to implement this in react ?
(*custom ...
0
votes
1
answer
207
views
Highlight.js how to unset after ajax call
I have a Jquery JS script that loads a modal window. In that modal window there is a pre code tag where i via ajax pulls in a script. I want to use Highlight.js to make the code more readable.
I have ...
1
vote
0
answers
32
views
Log-entries not color-coded when running tests
The log4j2.xml of this project reads:
<?xml version="1.0"?>
<Configuration>
<Appenders>
<Console name="stderr" target="SYSTEM_ERR">
...
2
votes
1
answer
1k
views
vscode it's highlighting all tags instead of opening and closing tags
when i click in a tag, my vscode highlights all the tags with the same name, but i want it to highlight only the matching tag. it used to do this normally, but one day it somehow changed and i don't ...
0
votes
1
answer
37
views
Plotly highlight function highlighting incorrect boxplots
While my cursor above the boxplots displays the correct statistics, the higlight function can only highlight one of the boxes and doesn't work correctly. Wherever I click, the leftmost box is ...
0
votes
1
answer
114
views
Highlight Cells closest to target value but ignoring text
I am trying to highlight cells in a table that are closest to a target value in each column. I had been using conditional formatting and this formula : =AND(N8<>"",ABS(N8-$E$5)=MIN(ABS(...
3
votes
2
answers
127
views
mix-blend-mode Not Working for Highlighted Table Column in HTML/CSS
I'm having an issue with mix-blend-mode in my HTML/CSS table. I want to highlight rows and columns in a table when hovering over cells, but the mix-blend-mode effect only works as expected for rows, ...
0
votes
2
answers
115
views
Algolia autocomplete warning 'The attribute "..." described by the path ["..."] does not exist on the hit. Did you set it in `attributesToHighlight`?'
I have developed a web app with VueJS (Composition API) and use Algolia as my search engine. I followed the guidelines from Algolia to build a component for autocomplete and though it works, I get ...
2
votes
1
answer
170
views
How can highlight selected item in flatlist in React Native?
I am developing an application with React Native. There is a screen like in the picture and I am displaying messages with flatlist on this screen. I want to get a view like in picture 2 when a message ...
3
votes
3
answers
99
views
HIghlight in red incorrect digits of Pi in a string
I am trying to test each character in Pi_Entered to Pi, if wrong then highlight vbRed and move the next character. I get TTFTTTTF instead of digits. Highlight in red incorrect digits of Pi in a string....
-1
votes
1
answer
100
views
How to search for and highlight matching text/phrases within the entire document-body's text-content?
I want to regex and replace only text content(innerText) of an html, and in the end keep all the HTML elements (or restore them as they were).
The regex must not check the HTML elements, but only the ...
1
vote
1
answer
2k
views
No text highlight in jupyter cells
I installed jupyter notebook and don't get any text highlighting on my .ipynb files. It seems that it treats the code as plain text, even though the code is executed perfectly.
No text highlight
On ...
0
votes
0
answers
78
views
Highlighting Mismatch cells and sorting them at the top
Application.ErrorCheckingOptions.NumberAsText= False
Dim lastRow As Long
Dim i As Long, j As Long
Dim Tiger, Lion, recon As Worksheet
Dim compareRange As Range
Dim cell As Range
Dim dict As Object
...
0
votes
1
answer
138
views
How to get highlighted text with Javascript?
So I actually have this mostly working, but I've run into an issue that I can't quite get sorted. First I need to give a quick explanation of what I'm trying to do:
What I'm trying to do and the ...
0
votes
1
answer
95
views
Search and highlight a row in an Excel sheet which contains two or more different data
I want to query based on the values in different cells in an Excel sheet and color the rows where these values are located at the same time. The current code just colors a single line and the loop ...
0
votes
3
answers
102
views
How do I turn off tag highlighting while editing xml files in visual studio?
Maybe I'm just searching with the wrong words and terms, but I can't find out how to turn this feature off, or at the very least reduce the intensity of the selection style
enter image description ...
0
votes
4
answers
95
views
bash while loop highlight words through text from array variable for mcat grammar
How do I make it so from the peptides list it gets all of the text, not just one variable from the ARRAY variable. Is there some sort of delimiter I can use? I want to put a paragraph and have it ...
0
votes
0
answers
87
views
Highlight Gantt Chart in plotly
I have created a Gantt chart for some log analysis. I want a feature in it such that when we hover over a plot, the plot should highlight itself to show which plot I am highlighting.
def ...
-1
votes
1
answer
450
views
How to Remove Highlight Effect on Hover When Using Google Translate API
When I am using google translate in my website, text is getting highlighted on hover/mouseover. How to remove this highlight effects? This is my code
<script type="text/javascript" src=&...
0
votes
1
answer
81
views
Identifying start and end time and duration in minutes of highlighted area in ggplot
I have highlighted areas in a time series plot where variable 1 is greater than 28.3m and in a separate plot where variable 2 is between 335 and 390 and then stacked these plots on top of each other. ...
0
votes
1
answer
138
views
Conditional formatting for matching names based on dropdown with dates
I have a table with a list of 100 desks and 14 columns with dates.
In each column I allocate team members for the specific date on top
I've made additional columns with each team's staff members. I ...
0
votes
1
answer
99
views
Google Sheets conditional formatting highlight text
Is it possible to automatically highlight part of the text inside the cell if it matches a range of values?
e.g. the column A has these values:
The exclusion list in B has the Deputy Mayor and Member ...
0
votes
1
answer
43
views
How to implement rectangular highlight tool on ember
I want to implement a rectangular highlight tool as seen on google.com -> Settings -> Send Feedback -> Capture Screenshot -> Highlight or Hide info.
Seems very complicated and I'm not sure ...