246 questions
1
vote
1
answer
92
views
Why is codepen or jsfiddle and internet browser giving different results and is there a way to fix it?
I am attempting to learn JavaScript and am doing edabit challenges.
To help me work out whats going on I use codepen.io
I was using the following code and wanted to get the index of the second ...
0
votes
1
answer
190
views
JSON Expand/Collapse Functionality Not Working
The expand and collapse functionality for JSON is not working as expected. When attempting to expand or collapse the JSON data, no action takes place, and the data remains static. This issue is ...
2
votes
1
answer
120
views
Replacing automatically-highlighted code across several lines in IntelliJ
IntelliJ has a feature where (a) you select part of one line, then (b) IntelliJ immediately and automatically highlights that same text that happens to exist is multiple lines of similar code in that ...
0
votes
0
answers
283
views
Compile and Run dynamic C++ code inside react native app
I have a react native application for android, where i want to give user the capability of writing c++ code inside a code editor and then compiling and executing to show the output. I don't want to ...
0
votes
1
answer
969
views
Not able to use the extension in the SageMaker Studio Code Editor in VPC-only mode
I recently updated to the new experience of SageMaker Studio. When I opened the code editor, the extensions that are pre-installed in the official image were grayed out and unusable, as shown in the ...
0
votes
1
answer
44
views
I want to add the automatically Dropdown Box based on the First value
. In this form I want to add the google apps script for automatically select the Question -2 Value (Item Name) based on Question-1 Value (SKU Code).
. This is the image of sheet from I want the value ...
0
votes
1
answer
142
views
Written VBA coding not showing in Outlook
All of a sudden i am now unable to view VBA codes i have written in Outlook. Macro security also enabled for all macros. Anyone know how this can be resolved and me to see all coding again?
VBA code ...
1
vote
0
answers
371
views
Understanding how to create multiple tab or instances with monaco
So what we are trying to do is , a user can open a tab and assign a language to me monaco editor instance
<MonacoEditor
height="600"
language="javascript"
...
0
votes
1
answer
760
views
How to Create a Custom Language in Monaco Editor for Inline CSS (Without Selectors or Brackets)
I am working on integrating Monaco Editor into a project and need to customize the CSS language support for a specific use case. My goal is to adapt the CSS language mode for inline styles, similar to ...
0
votes
1
answer
65
views
state is not updated in functional component
I'm making code editor, default language code should change, when user change language from dropdown options.
code
setCode state is not at all updated on the screen, but when I checked logs it was ...
0
votes
0
answers
133
views
How to add code folding for codeeditor example of pyside6?
https://doc-snapshots.qt.io/qtforpython-6.2/examples/example_widgets__codeeditor.html
I'm trying to add a code folding area to right of line number area for brace pairs if pairs located at different ...
-1
votes
1
answer
82
views
How to view a field variable content in visual studio editor in design time when i do mouseover
Question is simple. I just want to know what's in the variable value(those are actually constants or have default value) in design time -NOT RUNTIME or WHILE DEBUGGING- in the Visual Studio editor ...
2
votes
1
answer
842
views
Host Visual Studio Core Editor as a standalone editor Control inside WPF app
I want to host Visual Studio Core Editor as a standalone editor inside my C# WPF app. At present I am using AvalonEdit in the project. I want some more features and more sophisticated editor. Is it ...
-2
votes
2
answers
3k
views
How I create a code editor with custom rules in Angular 13
my name is Edu and I'm creating a web IDE for RISCV Assembly, I never worked with code editor in angular, I need to create some sintax rules, anyone know some component or library that facilitate for ...
2
votes
1
answer
1k
views
How to load my own custom python packages into Pyodide using javascript?
//fileSaver is used to save the code to a file and download it
const fileSaver = require('file-saver');
// Setup ace variables and the output pane for pyodide
var editor = ace.edit("editor")...