AppCode 2018.2 Help

Joining Lines and Literals

Basics

AppCode makes it possible to concatenate two unselected or several selected lines into one, removing the extra spaces, and providing the proper syntax. This operation smartly analyzes the lines being joined and treats them accordingly. For example, you can join lines of code, lines of comments, field declaration and initialization.

Joining lines

  1. Place the caret on the line, to which the other lines should be added.
    ac CtrlShiftJ1
  2. Sequentially press ⌃⇧J keyboard shortcut, until all fragments are joined in a single line.
    ac CtrlShiftJ2

Joining string literals

  1. Select the lines with string literals that should be joined.
    AppCodeJoinLiterals1
  2. Press ⌃⇧J keyboard shortcut. All redundant characters (spaces, quotes, and plus signs) are gone.
    AppCodeJoinLiterals2

Examples

Joining a field or variable declaration and assignment:

ac ctrlShiftJ8

Pressing ⌃⇧J produces the following result, with the unwanted spaces and variable name in the second line removed:

ac ctrlShiftJ9

Consider the following pair of statements:

ac ctrlShiftJ10

Press ⌃⇧J to join these lines into a correct single-line statement.

ac ctrlShiftJ11
Last modified: 16 August 2018

See Also