akamud / vscode-theme-onedark

VSCode Theme based on Atom's One Dark theme
MIT License
286 stars 196 forks source link

Parameter colors look off, and so is function calls #159

Open rababR1 opened 1 year ago

rababR1 commented 1 year ago

Please provide as much information as possible, usually I need these information to actually start working on an issue, so try to fill as much of these as possible

def printt(string, strDelay):
    for i in str(string + "\n"):
        print(i, end="", flush=True)
        time.sleep(strDelay)

Filename and Language selected

Filename: Text-Based-Game.py Language: Python

Atom Original theme Screenshot

image Minus the lack of parameter colorization, .sleep(strDelay) is colorized

VSCode theme Screenshot

image

Versions used

Extra information

Though I like the colorization for the parameters, time.sleep(strDelay) looks off to me. I have this setting for semantic highlighting: image And, setting semantic highlighting to "true" actually fixes the function call, but makes the parameters look dull: image