From 1c01e3228ab45f688c653e02746caa547eb88078 Mon Sep 17 00:00:00 2001 From: Glenn Date: Wed, 3 Jan 2024 17:57:02 +0100 Subject: [PATCH] doc: use ctrlc to help focus on content --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 678e50d..4e4b985 100644 --- a/README.md +++ b/README.md @@ -112,9 +112,11 @@ result file itself: --header-prompt prompts/header-context.txt \ --footer-prompt prompts/footer-write-readme.txt \ src \ - | xclip -selection clipboard -i + | ctrlc ``` +__Note__ `ctrlc` is my alias to `xclip -selection clipboard -i` + #### Advanced with 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: - .git - - .code_preloader.yml + - code_preloader.yml - bin - prompts @@ -136,9 +138,10 @@ footer_prompt_file_path: prompts/footer-write-readme.txt Then type ```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