Skip to content
Merged
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
35 changes: 35 additions & 0 deletions packages/person-names/0.1.0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Person Names

Generate random person names on the fly with [espanso](https://espanso.org).

| Trigger | Expands to | Example |
| ------- | ---------- | ------- |
| `>c1` | First name **+** last name | `Camila Rossi` |
| `>c2` | First name only | `Camila` |

Every time you type a trigger, espanso picks a fresh random value, so you get a
different name each time.

## What's inside

- **1000 distinct first names** and **450 last names**, curated from an
international mix (European, Latin American, East & South Asian, Middle
Eastern and African) so the output feels realistic and diverse.
- `>c1` combines a first name and a last name **independently**, which yields
more than **450,000** possible full names.

## Usage

Type `>c1` or `>c2` anywhere espanso is active and it expands instantly:

```
>c1 -> Kenji Alvarez
>c2 -> Priya
```

Great for filling forms, seeding test data, or generating placeholder people.

## Customizing

The names live in `package.yml` under the `first_name` and `last_name` global
variables. Add, remove or edit entries in the `choices` lists to fit your needs.
7 changes: 7 additions & 0 deletions packages/person-names/0.1.0/_manifest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: "person-names"
title: "Person Names"
description: Generate random person names. Type >c1 for a full name (first + last) or >c2 for the first name only. Ships 1000 distinct first names and 450 last names from an international mix.
version: 0.1.0
author: Eduar Bastidas
homepage: "https://github.com/mreduar/person-names"
tags: ["names", "random", "person", "placeholder", "test-data"]
Loading
Loading