diff --git a/content/behind-atom/sections/interacting-with-other-packages-via-services.md b/content/behind-atom/sections/interacting-with-other-packages-via-services.md index 478bccd3ae..6b6558f5cd 100644 --- a/content/behind-atom/sections/interacting-with-other-packages-via-services.md +++ b/content/behind-atom/sections/interacting-with-other-packages-via-services.md @@ -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 { diff --git a/content/using-atom/sections/editing-and-deleting-text.md b/content/using-atom/sections/editing-and-deleting-text.md index 96ace4dbe6..b98388b13d 100644 --- a/content/using-atom/sections/editing-and-deleting-text.md +++ b/content/using-atom/sections/editing-and-deleting-text.md @@ -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 CmdCtrl key pressed down to select multiple regions of your text simultaneously. +Return to a single cursor by hitting Esc 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.