Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Sergey Simonchik
Total activity
533
Last activity
February 05, 2025 21:00
Member since
January 10, 2012 08:43
Following
0 users
Followed by
0 users
Votes
3
Subscriptions
178
Activity overview
Articles (0)
Posts (0)
Comments (352)
Sort by recent activity
Recent activity
Votes
Created
June 28, 2021 14:56
`JBTerminal` corresponds `com.intellij.terminal.JBTerminalWidget`, but a lot of stuff has been changed since then.
Community
IntelliJ IDEA Open API and Plugin Development
Configuring a terminal editor through plugins
0 votes
Edited
January 26, 2021 10:25
Awesome! When shell integration is enabled, fish is launched with XDG_CONFIG_HOME pointing to an internal IntelliJ script (.../plugins/terminal/fish/config.fish). This script tries to load all fish...
Community
IntelliJ IDEA Users
Need help: Opening a terminal automatically starts a Docker container every time
0 votes
Created
January 25, 2021 21:52
Hi Dom, Sorry for the delay. Thanks for the information. Unfortunately, it didn't help. Let's run fish with verbose logging, for that, set "Shell path" to "fish -d 5" in "Preferences | Tools | Term...
Community
IntelliJ IDEA Users
Need help: Opening a terminal automatically starts a Docker container every time
0 votes
Created
January 18, 2021 13:32
The typed shell command is provided by org.jetbrains.plugins.terminal.ShellTerminalWidget#getTypedShellCommand. Unfortunately, it's not 100% correct, because it's guessed from current terminal text...
Community
IntelliJ IDEA Open API and Plugin Development
Terminal listener declared in plugin.xml not working
0 votes
Created
January 18, 2021 11:35
Nope, TerminalWidgetListener doesn't work via in applicationListener (and it cannot work in projectListener, because JBTerminalWidget doesn't depend on a project). Could you please clarify your use...
Community
IntelliJ IDEA Open API and Plugin Development
Terminal listener declared in plugin.xml not working
0 votes
Created
December 23, 2020 10:48
Thanks, I see. It's not a known issue, so it's probably something new in 2020.3. I guess the initial cause is that "All of a sudden the project files tree disappears". Feel free to file a new issue...
Community
WebStorm
dependencies index lopp
0 votes
Created
December 21, 2020 17:33
Thanks for the investigation. It's strange that turning off "Shell integration" helped.It'd be great if you could enable "Shell integration" back and check the followings things in a new terminal t...
Community
IntelliJ IDEA Users
Need help: Opening a terminal automatically starts a Docker container every time
0 votes
Created
December 21, 2020 10:15
Could you please clarify exact actions that were performed during this session? According to the log, node_modules folder (and probably some other files) was removed and then dependencies were rein...
Community
WebStorm
dependencies index lopp
0 votes
Created
November 07, 2020 22:21
Indeed, ConcurrentModificationException is possible in 2020.2.*, it's fixed in 2020.3 by replacing "Lists.newArrayList()" with "new CopyOnWriteArrayList<>()". Even with model listener, I'd still re...
Community
IntelliJ IDEA Open API and Plugin Development
Execute command in the terminal from plugin action
0 votes
Edited
November 06, 2020 11:38
Looks good to me. The question is how `wait until done` is implemented. For example, a straightforward approach would be like this: while (shellTerminalWidget.hasRunningCommands()) { Thread.sleep(...
Community
IntelliJ IDEA Open API and Plugin Development
Execute command in the terminal from plugin action
0 votes
«
First
‹
Previous
Next
›
Last
»