doc: use ctrlc to help focus on content
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
29cf12f8cd
commit
1c01e3228a
1 changed files with 6 additions and 3 deletions
|
@ -112,9 +112,11 @@ result file itself:
|
||||||
--header-prompt prompts/header-context.txt \
|
--header-prompt prompts/header-context.txt \
|
||||||
--footer-prompt prompts/footer-write-readme.txt \
|
--footer-prompt prompts/footer-write-readme.txt \
|
||||||
src \
|
src \
|
||||||
| xclip -selection clipboard -i
|
| ctrlc
|
||||||
```
|
```
|
||||||
|
|
||||||
|
__Note__ `ctrlc` is my alias to `xclip -selection clipboard -i`
|
||||||
|
|
||||||
#### Advanced with configuration file
|
#### Advanced with configuration file
|
||||||
|
|
||||||
You can also do the same by storing all parameters within a configuration file
|
You can also do the same by storing all parameters within a configuration file
|
||||||
|
@ -124,7 +126,7 @@ You can also do the same by storing all parameters within a configuration file
|
||||||
---
|
---
|
||||||
ignore_list:
|
ignore_list:
|
||||||
- .git
|
- .git
|
||||||
- .code_preloader.yml
|
- code_preloader.yml
|
||||||
- bin
|
- bin
|
||||||
- prompts
|
- prompts
|
||||||
|
|
||||||
|
@ -136,9 +138,10 @@ footer_prompt_file_path: prompts/footer-write-readme.txt
|
||||||
Then type
|
Then type
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./bin/code-preloader src | xclip -selection clipboard -i
|
./bin/code-preloader -c code_preloader.yml src | ctrlc
|
||||||
```
|
```
|
||||||
|
|
||||||
|
__Note__ `ctrlc` is my alias to `xclip -selection clipboard -i`
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue