feluxe

- Total activity 24
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 8
- Subscriptions 4
-
Created How to handle a mixed Python + C / C++ project?
AnsweredHi there! It's quite common for Python projects to have some parts written in C/++. I couldn't find a C Plugin in PyCharm. Could someone please tell me how I should handle this? Thanks! -
Created Execute a shell command from within Intellij Idea via shortcut.
AnsweredCan I define a keyboard shortcut inside Intellij Idea to run a shell command? I need to execute this command in order to build the application: $ node make.js If I could run it from within IntelliJ... -
Edited 'Identifier under caret' highlighting delay
AnsweredWhen I position the cursor on a variable or function it gets highlighted. There is a small delay until the highlighting kicks in (see gif attachment). This behavior is quite unpleasant to me. It cr... -
Created Automatic Function Documentation Comments: use "return" instead of "returns"
Hi there,I have a problem with the automatic function Documentation Comments.[CODE]/** * Returns the sum of a and b * @param {Number} a * @param {Number} b * @returns {Number} */function sum(a, b) ...