16,788 questions
0
votes
0
answers
25
views
Tailwind Autocomplete Works Only in One Phoenix Project in VS Code
I recently joined my university’s CS group and started learning Tailwind using the Phoenix framework. To practice, I cloned a repository of an ongoing project. After a few days, I decided to create a ...
0
votes
0
answers
188
views
VS Code isn't autocompleting or underlining errors
VS Code quit highlighting errors in the editor. Furthermore, autocomplete isn't working. I don't know if its a related issue, however, IntelliSense keeps getting stuck in its initialization phase.
...
0
votes
0
answers
60
views
How do you autocomplete a C++ empty method implementation in VSCode?
In CLion, I can start typing the qualified name of a declared but unimplemented C++ class method from a header in the implementation file, and a context menu will pop up with suggestions. If I select ...
1
vote
1
answer
145
views
Autocomplete for nested vars imported from a library
I’m building a Google Apps Script library and I’d like to expose some constants as a nested object.
var CONFIG = {
LEVEL0: {
LEVEL1_A: 'A',
LEVEL1_B: 'B'
}
};
When I use this library in ...
0
votes
0
answers
34
views
Why doesn’t my MUI Joy extendTheme override the Autocomplete Popper inset style?
I’m trying to override the default styles of the Joy UI Autocomplete component using extendTheme. Specifically, I want to change the inset value of the dropdown Popper. However, my theme override does ...
2
votes
1
answer
76
views
Python autocomplete popup: double mouse selection
I am creating an autocomplete popup in Python using a Listbox which pops up. One can navigate by using arrows and using Enter to select or use the mouse to select an option. The arrow navigation is ...
0
votes
1
answer
229
views
What does the red/green arrows in autocompletion in IntelliJ/WebStorm etc. mean?
In IntelliJ or in this example WebStorm, it shows these icons next to the function or other code autocompletions:
You can see a green arrow pointing upwards on some items and a red one pointing ...
5
votes
2
answers
405
views
How to automatically insert parentheses () when autocompleting functions in Python using Positron IDE?
I am new to the Positron IDE and I'd like to automatically insert parentheses () when coding in Python. For example, when I type len and hit Enter to confirm, it does not automatically insert ...
2
votes
0
answers
67
views
Form not updated when Browser auto-fills saved email/password until user interaction [duplicate]
I have a login form in Angular 16 with FormGroup validation.
When I open the login page in Chrome, the browser auto-fills the saved email and password fields. The values are visible in the input ...
0
votes
0
answers
80
views
Autocomplete pdb and .venv
I have the following file 'test.py'
#!/usr/bin/env python3
if __name__ == '__main__':
test: str = "This is a test"
breakpoint()
print(test)
When executing this (no venv) auto-...
0
votes
1
answer
51
views
Flutter - AutoComplete - clear the input after selection
I am trying to use autoComplete, but after selection of value I cannot start with an empty filed and start from scratch with the next item. The TextEditingValue is not accessible in the onSelected ...
0
votes
1
answer
79
views
Enabling autocomplete in PyCharm Terminal
I am running PyCharm 2025.1.3.1, opening up a remotely-hosted project via JetBrains Gateway 2025.1.2, under macOS 15.5.
When I open the Terminal within PyCharm, the Tab key does not provide ...
0
votes
0
answers
41
views
Combine autocomplete and text search into single index definition
Suppose that I have the below simplified schema:
const Venue = new mongoose.Schema(
{
name: {
en: { type: String, required: true }, // English translation
fr: { type: String, ...
0
votes
0
answers
96
views
Python Click Shell Completion
i am currently trying to get a compiled python project which is using click 8.0.4 running with shell_completion.
My project contains multiple downstream scripts, which should support the ...
1
vote
1
answer
50
views
How to link the Autocomplete dropdown item to a subsection of same page without displaying full url name
I have created a dropdown list with the autocomplete feature.
The aim is to type the name of a list, select the name from the dropdown list, which would then take it to the url link of the section.
...