Alexander Zeitler

- Total activity 78
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 19
-
Created Can't take screenshot when context menu is opened on Linux
AnsweredSometimes I want to take screenshots from IntelliJ based IDEs like IntelliJ itself or Rider but when the IDE has a context menu opened, I can't take a screenshot on Linux - neither using PrtScr nor... -
Created Open Project shortcuts on Ubuntu vs. macOS
On Ubuntu I can reach shortcuts for "New Window" and "This Window" using ALT+W / ALT+T in the Open Dialog On macOS there doesn't seem to exist these shortcuts: Non of the modifier keys triggers... -
Edited space-before-function-paren rule in WebStorm
The ESLint space-before-function-paren rule forbits space before function parentheses. Using the settings below: when formatting this using WebStorm function test() {} everything is ok. But reform... -
Edited Replace quotes around JavaScript object properties
When pasting JSON with a lot of properties in a JavaScript file, I want to remove the double quotes around property names efficiently. How can I do it using WebStorm without deleting all quotes man... -
Edited Disable test file highlighting in Project explorer and Editor Tab
Where can I disable test folder/file highlighting (especially the background) in project view and for the current tab (the dark green background)? Due to my color scheme (Material UI plugin) I'm al... -
Edited Cursor is missing after ALT+ENTER in 2018.1.4 on Ubuntu 18.04
After hitting ALT+ENTER and choosing an action, when the Action has been executed, the cursor is gone. Same happens when hitting ESC after ALT+ENTER. Clicking inside the code editor using the mouse... -
Edited vue import component: "Module is not installed"
I created a vue.js 2 project via vue-cli and created two simple components like this <template> <div class="jumbotron"> Dashboard </div></template><script>export default { name: 'dashboard',};</scr... -
Edited Change indentation of arrow function in Javascript
Hi which JavaScript formatting option do I have to modify to instead of this formatting result: client .setClaimForUser({ userId, claim }) .then(() => { return resolve(true); }, err =>... -
Created Remove trailing spaces only from blank lines
How can I remove trailing spaces from blank lines using reformat code or on save? I don't want them to be removed from no blank lines as it seems to happen by activating "Strip trailing spaces on S... -
Created Reformat spacing in HTML attributes
Hi, how can I cleanup this HTML code: <div style=" background-color: #009fff; float: left; height: 54px; padding: 0.5rem 0 0.5rem 1rem;"> to look like this: <div style="background-col...