Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Update editing-and-deleting-text.md #693

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {
}
```

Similarly, to consume a service, specify one or more [version _ranges_](https://docs.npmjs.com/misc/semver#ranges), each paired with the name of a method on the package's main module:
Similarly, to consume a service, specify one or more [version _ranges_](https://docs.npmjs.com/cli/v6/using-npm/semver#ranges), each paired with the name of a method on the package's main module:

```json
{
Expand Down
2 changes: 2 additions & 0 deletions content/using-atom/sections/editing-and-deleting-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ This can be incredibly helpful in doing many type of repetitive tasks such as re

You can also use the mouse to select text with the <kbd class="platform-mac">Cmd</kbd><kbd class="platform-windows platform-linux">Ctrl</kbd> key pressed down to select multiple regions of your text simultaneously.

Return to a single cursor by hitting <kbd class="platform-mac platform-windows platform-linux">Esc</kbd> or by clicking anywhere in the file to position a cursor there as normal.

#### Whitespace

Atom comes with several commands to help you manage the whitespace in your document. One very useful pair of commands converts leading spaces into tabs and converts leading tabs into spaces. If you're working with a document that has mixed whitespace, these commands are great for helping to normalize the file. There are no keybindings for the whitespace commands, so you will have to search your command palette for "Convert Spaces to Tabs" (or vice versa) to run one of these commands.
Expand Down