ilmoi
- Total activity 38
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 15
-
Created How do I display parameter tips for objects in typescript?
Currently if one of the parameters is an object the only help I get from the IDE is this: which of course is useless because I have no idea what to type next... can this be configured somehow in se... -
Created After recent update, can't start JB IDEs from terminal
AnsweredI used to be able just type: ``` webstorm . pycharm . clion . ``` And that would open the existing location as a project inside of JB IDE. After recent upgrade (not sure which version) when I do th... -
Edited Vue + Tailwind = no autosuggestions in WebStorm?
When installing tailwind normally in WebStorm, like so: npm install tailwindcss postcss autoprefixer autosuggestions work just fine. However the above installation doesn't work with Vue as explaine... -
Created Is it possible to specify a fixed width for the project tool window?
The title says it. Currently it seems to dynamically adjust based on how I open the editor (half screen, full screen, etc). Is there a way to make the project window on the left always be fixed wid... -
Created Recent files: don't close files on backspace
If you hit and hold backspace when in "Recent files", it starts to close fles until none are left. I frequently do this by accident when deleting text I'm searching for. Eg I have "some_file_name..... -
Created How do I keep the hard wrap line, but prevent auto-hard wrap on "code reformat"?
The title says it. I want to keep the line visible at 80 characters, but I don't want PyCharm to automatically wrap code when it exceeds 80 when I use "reformat code". Is there a way to do that? -
Created "Process X is running" - how to set "Stop and Rerun" as default globally?
When I have the debugger running and I hit run again (intending to re-run it), I always get the following pop up: Process 'X' is Running 'X' is not allowed to run in parallel. Would you like to sto... -
Created Can't copy from debugger console
The title says it. I can't Cmd-C any of the text in the debugger console (and there is no right click menu). This is extremely painful when there are errors during debugging that you end up having ... -
Created WebStorm: readline() doesn't close after input
I'm taking input from terminal using the following code: ``` const readline = require('readline')const rl = readline.createInterface({input: process.stdin, output: process.stdout});...rl.question("... -
Edited Is there a "line comment at first column" option for Python in PyCharm?
Basically having the same issue as described here, but in Python/PyCharm. I noticed it's solved for C in CLion but I can't find how to solve it in PyCharm. Any advice?