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
Edited
August 12, 2024 12:51
I can think of two way of fixing it:1. Create `CapturingProcessHandler`, so it doesn't convert `\r\n` to `\n`:val handler = object: CapturingProcessHandler(commandLine) { override fun readerOptio...
Community
IntelliJ IDEA Open API and Plugin Development
CapturingProcessHandler seems to always return LF line separators from stdout
0 votes
Created
April 08, 2024 09:40
Official comment
Probably, when building a command line, current working directory wasn't set. As a result, it's inherited from the parent process - IDE.If you're using `com.intellij.execution.configurations.Genera...
Community
IntelliJ IDEA Open API and Plugin Development
Get the current path in the subprocess started by KillableProcessHandler
0 votes
Created
February 22, 2024 09:59
No, it's not possible to execute `sudo …` command without prompting for a password..
Community
IntelliJ IDEA Open API and Plugin Development
Execute command in the terminal from plugin action
0 votes
Created
February 05, 2024 22:37
Please use `org.jetbrains.plugins.terminal.TerminalToolWindowManager` instead of `TerminalView`.
Community
IntelliJ IDEA Open API and Plugin Development
Execute command in the terminal from plugin action
0 votes
Created
January 29, 2024 15:05
You can code like: val swfFound: Boolean = PackageJsonFileManager.getInstance(project).validPackageJsonFiles.asSequence().map { PackageJsonData.getOrCreate(it) }.any { it.containsDepende...
Community
IntelliJ IDEA Open API and Plugin Development
How to determine if the current project is specific framework based?
0 votes
Created
January 29, 2024 14:57
Unfortunately, no such API at the moment. You can use the following approach: listen to package.json file add/remove/modify events using `com.intellij.javascript.nodejs.packageJson.PackageJsonFile...
Community
IntelliJ IDEA Open API and Plugin Development
What is the best practice for checking node dependencies and starting plugin services on demand?
0 votes
Created
November 27, 2023 14:54
Hi Patryk,Thanks for the details. If you need to add a gutter icon to a specific line number, then probably it would be easier to use `com.intellij.openapi.editor.RangeMarker`? RangeMarker highligh...
Community
IntelliJ IDEA Open API and Plugin Development
Adding Gutter Icon depending on line highlight/console output
0 votes
Created
September 18, 2023 12:36
Please write a string using com.jediterm.terminal.TtyConnector#write(java.lang.String). The string shouldn’t end with \r to avoid execution.Use com.jediterm.terminal.ui.JediTermWidget#getTtyConnect...
Community
IntelliJ IDEA Open API and Plugin Development
Sending command text to the terminal but not execute it
0 votes
Created
August 17, 2022 21:22
Hey Y Abo Sedera, Thank you for reporting. Your ~/.zshrc is pretty complex, I was trying to replicate it locally, but seems failed. Could you please comment it line by line (or probably feature by ...
Community
IntelliJ IDEA Users
Text in terminal is corrupted when trying to use autocompletion
0 votes
Created
March 22, 2022 11:45
Mark, please share an example project where the problem is reproduced.
Community
IntelliJ IDEA Open API and Plugin Development
Execute command in the terminal from plugin action
0 votes
«
First
‹
Previous
Next
›
Last
»