feat: also allow the config file without dot, give an error message at search replace if search was not found in file
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
This plugin integrates a ChatGPT O1 model workflow into Neovim. It allows you to:
|
||||
|
||||
1. Generate prompts containing:
|
||||
- An **initial prompt** (from `.chatgpt_config.yaml`)
|
||||
- A list of directories (also specified in `.chatgpt_config.yaml`) from which it gathers the project structure and file contents
|
||||
- An **initial prompt** (from `.chatgpt_config.yaml` or `chatgpt_config.yaml`)
|
||||
- A list of directories (also specified in `.chatgpt_config.yaml` or `chatgpt_config.yaml`) from which it gathers the project structure and file contents
|
||||
- **Interactive file selection** if enabled, so you can pick exactly which directories to include
|
||||
- Any **initial files** you define (e.g., `README.md`, etc.)
|
||||
|
||||
@@ -21,11 +21,11 @@ This plugin integrates a ChatGPT O1 model workflow into Neovim. It allows you to
|
||||
|
||||
- **Preview Changes**: If `preview_changes: true`, you get a buffer showing proposed changes before you apply them.
|
||||
|
||||
- **Interactive File Selection**: If `interactive_file_selection: true`, you choose which directories from `.chatgpt_config.yaml` get included in the prompt, reducing token usage.
|
||||
- **Interactive File Selection**: If `interactive_file_selection: true`, you choose which directories from `.chatgpt_config.yaml` or `chatgpt_config.yaml` get included in the prompt, reducing token usage.
|
||||
|
||||
- **Improved Debug**: If `improved_debug: true`, debug logs go into a dedicated `ChatGPT_Debug_Log` buffer for easier reading.
|
||||
|
||||
## Example `.chatgpt_config.yaml`
|
||||
## Example `.chatgpt_config.yaml` or `chatgpt_config.yaml`
|
||||
|
||||
```yaml
|
||||
project_name: "chatgpt_nvim"
|
||||
|
||||
Reference in New Issue
Block a user