Screen Too Small

This course material requires a larger screen to properly display the terminal and editor interfaces.

Please use a tablet, laptop, or desktop computer for the best learning experience.

You can continue browsing, but the experience will be significantly limited.

16/24
Free Trial: 5 lessons remaining
Unlock Full Access

Word Objects: iw, aw, iW, aW

Estimated time: 10 minutes

Task Instructions

Master word and WORD text objects for efficient word manipulation

Practice using word text objects. 'iw' selects the inner word (just the word), 'aw' includes trailing spaces. Capital W versions work with WORDS (including punctuation). Position your cursor anywhere in a word and use ciw to change it.

Learning objectives

  • Master inner word (iw) and around word (aw) objects
  • Understand the difference between word and WORD
  • Practice efficient word deletion and changing
  • Learn when to use each variation

Required Keystrokes

This lesson requires you to use specific keystrokes to complete it. Your submission will be evaluated based on whether you used the required keystrokes mentioned below, rather than matching a specific output.

ciw
Change inner word
[cd]i[wW]
Use word text objects

What This Means

  • Your solution must include the required keystroke patterns
  • The order of keystrokes may matter depending on the exercise
  • You'll still need to achieve the expected output
  • This helps you practice specific Vim techniques

Helpful commands:

Command Description
ciw Change inner word
caw Change around word (includes spaces)
ciW Change inner WORD (includes punctuation)
diw Delete inner word
viw Select inner word

Hints

  • iw works from anywhere within the word
  • aw includes trailing whitespace, useful for removing words
  • W (capital) treats special characters as part of the word
vim@sandbox: ~/workspace
Make sure to save your file with :w ⏎ before submitting!