saveinme 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/package.json +1 -1
- package/src/display.js +2 -0
package/README.md
CHANGED
|
@@ -4,12 +4,20 @@
|
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
+
To install globally from npm:
|
|
8
|
+
```bash
|
|
9
|
+
npm install -g saveinme
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Or for local development:
|
|
7
13
|
```bash
|
|
8
14
|
cd path/to/saveinme
|
|
9
15
|
npm install
|
|
10
|
-
npm link
|
|
16
|
+
npm link
|
|
11
17
|
```
|
|
12
18
|
|
|
19
|
+
> **Note:** Once installed, both the **`saveinme`** and **`sim`** commands are registered globally and can be used interchangeably in any terminal window!
|
|
20
|
+
|
|
13
21
|
## Commands
|
|
14
22
|
|
|
15
23
|
> Both `saveinme` and `sim` can be used interchangeably!
|
package/package.json
CHANGED
package/src/display.js
CHANGED
|
@@ -234,6 +234,8 @@ export function showHelp() {
|
|
|
234
234
|
================================================================================
|
|
235
235
|
🚀 ${chalk.bold.yellow('COMMANDS CHEAT SHEET (QUICK OVERVIEW)')}
|
|
236
236
|
================================================================================
|
|
237
|
+
${chalk.dim(' * Note: You can use "saveinme" or the shortcut "sim" interchangeably *')}
|
|
238
|
+
|
|
237
239
|
${chalk.bold.white('sim')} List all saved notes (pinned first)
|
|
238
240
|
${chalk.bold.white('sim -c')} [${chalk.italic('title')}] Create/edit a note interactively
|
|
239
241
|
${chalk.bold.white('sim -cl')} [${chalk.italic('title')}] Instantly save text from your clipboard
|