6,287 questions
Best practices
0
votes
0
replies
57
views
How to add documentation comment for multiple properties?
I want to add a single documentation comment for multiple properties that follows TsDoc standard.
As far as I searched, below code is a sample that should work in VSCode (1.126.0):
const stausCode = {
...
Advice
0
votes
1
replies
76
views
Typing HTML Comments using Operator Mono
can you type HTML Comments using Operator Mono?
Example code snippet:
<!-- This is a comment -->
<!-- Another comment -->
<h1>Typeface Overview</h1>
<p>Ogg is a ...
Advice
0
votes
3
replies
104
views
Why do programming languages have different comments syntax?
Is it mostly mechanical, having reserved characters?
Or mostly preference on the part of the original language creators?
Why do some languages have single-line comments(// like JavaScript), and others ...
Best practices
0
votes
2
replies
58
views
Comment/note for instructions inside .md markdown
If writing .md markdown instructions (e.g. Installation instruction steps),
what would be the best way to give a note, why specific step is needed, some give some references.
In other words,
if I ...
Score of 2
2 answers
170 views
Why would the comment shortcut (Ctrl + /) not work when editing cshtml files in JetBrains Rider 2025.3.3?
On a Windows computer that has never had any JetBrains products installed, I installed Rider 2025.3.3.
The comment shortcut (Ctrl + /) works correctly in various file types (of relevance .cs, .js, ....
Score of 0
2 answers
104 views
How to show class method comments (docstrings?) from the implementation section in hover hints?
I'd like to document the code I currently have to write as good as poosible.
According to the lazarus documentation:
The Lazarus IDE can display tooltip hints when mouseovering identifiers.
From my ...
Advice
0
votes
2
replies
60
views
Use backticks inside backticks in JSdoc / PHPdoc etc
We can document code with backticks in JSdoc to see it styled like interpreted markdown when hovering over the definition:
/**
* This function is similar to `someFunction(foo)`
*/
function bar() { .....
Score of -2
1 answer
269 views
How do I create comments in my code that contain depiction of dialogs, windows and forms [closed]
I want to add comments that depict the UI as part of its explanation.
Before going on: Note that this is just an example, in most of the times, such drawing are needed to explain algorithms (A better ...
Score of 1
0 answers
151 views
VSCode only checks JSDoc in files that are currently open. How do I make it check the entire project?
Currently, VSCode only recognizes JSDoc @typedef declarations in files that are open.
For example, if I have a @typedef comment in a file that is NOT currently open in VSCode, VSCode thinks the type ...
Score of 1
1 answer
104 views
Oracle SQL Developer claims missing select just because of end line comment
If I select all text in the SQL Developer and execute it, it works:
select 16 cc, date '2025-03-05' coDate, 18 nr, 594.34 tvaInc, 1 cat from dual union all
select 16 cc, date '2025-03-06' coDate, 22 ...
Score of 1
2 answers
49 views
Macro for multi word or phrase find and apply comment bubble with specific comment
Looking for help as I'm trying to find a way to get a macro to find a specific word or phrase and, if found, apply a comment, if not found to move on to find the next word and apply comment. I want ...
Score of 2
1 answer
134 views
How to parse comments and keep them?
I am creating a tool that transpiles a language that is pretty much OCaml to valid OCaml code.
Now, I absolutely need to keep comments (in the correct places) when transpiling to OCaml.
The problem is ...
Score of 0
1 answer
84 views
VBA in Word - selecting ranges and making comments
I've been trying to figure this out, but no such luck.
Ultimately, I'm trying to create a macro that searches the Word document for each instance of String1, selects a range of text starting with that ...
Score of 0
2 answers
137 views
HTML coding in Wordpress Classic Editor
I'm trying to lay out a text with a series of numbered comments that are part of the piece. As it is now, they're listed at the end of the text.
Does anyone know the coding to have the text jump to ...
Score of 2
1 answer
128 views
Copy Paste to a cell Comment
Is there a way to copy paste into a cell comment? Can only do it from the clipboard, not from a cell or range reference. Or is there perhaps a vba way to call up the info in the clipboard and then ...