How to remove keywords separately in comments from Capital Letters (Ctrl + Backspace) in IntelliJ IDEA

I have been using eclipse for a while, now I am using IntelliJ IDEA. Eclipse had a nice feature that I would like to use in IntelliJ. Here is the function:

This is my variable name: int myVariableName; when I use this (Ctrl + Backspace) shortcut to the end of the variable (the cursor is next to the letter "e"). The variable name becomes -> int myVariable; , therefore, it is removed to the capital letter in the eclipse. (this is what I want removed separately in capital letters)

The problem with IntelliJ is that it removes all variable names, so I need to write a record again. Where can I configure this setting?

+7
java eclipse intellij-idea
source share
1 answer

Ctrl + Backspace deletes the previous "word".

A β€œword” can be defined as:

  1. anything between two spaces (default)
  2. camelCaseNotation

By default, this is option (1). To go to option (2), go to file->settings , find smart keys and check use camelcase humps .

+13
source share

All Articles