python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Python VsCode: Green highlight on class not working
I have the following python code:
from typing import List
class User:
id: str
name: str
def __init__(self, id: str, name: str):
self.id
self.name = name
UserList = Lis...
Vince M
Votes: 0
Answers: 1
highlight the .replace() word in javascript
function handleTextNode(textNode) {
if(textNode.nodeName !== '#text'
|| textNode.parentNode.nodeName === 'SCRIPT'
|| textNode.parentNode.nodeName === 'STYLE'
) {
/...
Arbaz Khalid
Votes: 0
Answers: 0
How to use gghighlight when also using ggplot, geom_line and group
I can't figure out to plot my data using geom_line and geom_point so that gghighlight works without needing the variables to be in the global environment
library(ggplot2)
library(gghighlight)
Create ...
user17213841
Votes: 0
Answers: 1
Poor performance with QSyntaxHighlighter of QTextEdit
In Syntax Highlighting in QTextEdit example, I want highlight xml text in a QTextEdit, so change only some part of text, like the one in the angle brackets, and not all text.
All work properly, but w...
valeriot90
Votes: 0
Answers: 1