More information about Eclipse Theia:
Questions tagged [theia]
56 questions
1
vote
1 answer
Multiple Git repositories in a Theia workspace
I have a workspace in which I have added several folders, each of them having its own Git repository, my workspace file looks like:
{
"folders": [
{
"path": "myproject1"
},
{
"path": "myproject2"
},
…

cgdave
- 77
- 1
- 4
1
vote
1 answer
Permission denied on mounted volume even after using initContainers?
I'm running the theia code-editor on my EKS cluster and the image's default user is theia on which I grant read and write permissions on /home/project. However, when I mount that volume /home/project on my EFS and try to read or write on…

touati ahmed
- 311
- 8
- 21
1
vote
1 answer
How do you reset Git credentials in Theia?
First of all, this is running on Linux so forget about the Credential Manager from Windows.
By mistake I deployed a Theia IDE Docker container with my own Git credentials saved in it, which should belong to an another user. How do I reset the…

Munchkin
- 857
- 5
- 24
- 51
1
vote
0 answers
How do I Install a vscode plugin in Theia directly from a git repo?
I would like to install a VScode plugin in Theia. It works when I install by specifying the download location of the VSixPackage. Snippet of the package.json file:
.....
"scripts": {
"postinstall": "download-debug-adapters"
},
"adapterDir":…

dwjbosman
- 906
- 9
- 33
1
vote
0 answers
Unable to install vscode-ripgrep on Docker: Unexpected token "..." in "...url.parse(_url)"
I need to setup a theia environment on Docker (ubuntu 18.04 container). During the installation using the docker file, I need to install vscode-ripgrep since it is a dependency for 2 theia…

vitonimal
- 453
- 7
- 17
1
vote
0 answers
Enable semi hosting automatically in GDB after connecting to a remote target
I'm using GDB to connect to a remote GDB server (OpenOCD, ARM). The program on the target uses semi hosting to print some debug messages.
I need to run in GDB these commands:
target remote 127.0.0.1:3333
monitor arm semihosting enable
Note that I…

dwjbosman
- 906
- 9
- 33
1
vote
1 answer
Not able to Quick Start on Theia
I am trying to create PoC using theia. Going through
https://github.com/theia-ide/theia/blob/master/doc/Developing.md
Running it on Ubuntu 16.04. git clone https://github.com/theia-ide/theia is done. But when I am trying to run yarn; I am getting…

Deepak Singhal
- 10,568
- 11
- 59
- 98
0
votes
0 answers
Compiling Arduino IDE from source throws errors
I'm running Ubuntu and I am following the Arduino's Github guide on how to compile the IDE, but yarn is failing.
I installed all the dependencies needed that are listed on the above page, as well as Theia's Prereqs
Issue
When executing yarn in the…

eja
- 4,677
- 3
- 21
- 30
0
votes
2 answers
Theia integration into existing electron app - Can't find drivelist.node native module
I'm trying to integrate Theia editor directly into an existing Electron app for nearly a week without success. All the Electron examples show running Theia standalone but not how to integrate it into an existing Electron app.
theia build command…

parliament
- 21,544
- 38
- 148
- 238
0
votes
0 answers
Theia with webpack - Conflict: Multiple assets emit different content to the same filename codicon.ttf
I'm seeing the following error when trying to build my browser app which loads Theia.
Conflict: Multiple assets emit different content to the same filename codicon.ttf
I have tried all kinds of different webpack configs to target this file but…

parliament
- 21,544
- 38
- 148
- 238
0
votes
1 answer
Adding a proxy using http-proxy in front of theia editor
I am running theia editor on port 6080 (say), when I am opening editor at -> localhost:6080 it works perfectly
I am Running a proxy server as below, which is proxying the request from 5000 port to 6080.
So when I am accessing the editor over proxy…

Pawan Singh
- 824
- 6
- 13
0
votes
0 answers
Run Java/SWT UI in Eclipse Theia
I would like to transition a custom IDE from Eclipse to Eclipse Theia.
Is it possible to run Java UI based on SWT library to display in a window inside Eclipse Theia?
This will make transition process easier as some UI would not need to be…

2c00L
- 495
- 12
- 29
0
votes
1 answer
yo @theia/plugin gives error TS1005 ',' expected and others
I was looking for developing my own theia plugin. First, I want to try the simple "Hello World" plugin with the command yo @theia/plugin.
Yeoman command to generate Theia plugin
I develop with Ubuntu 20.04. I get many TypeScript errors as we can see…

mathblin
- 1
- 1
0
votes
1 answer
How to solve gyp ERR! stack Error: `make` failed with exit code: 2?
I cloned a repo made by someone else to develop theia extension.
I ran the yarn command for the build, but the following error occurs.
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at…

Heerae Lee
- 11
- 2
0
votes
0 answers
What types of compilers can I use in Eclipse Theia?
I am new to Eclipse Theia . How can I link the compiler in Eclipse Theia?

Programmer1988
- 7
- 7