Minor fixes

This commit is contained in:
Jonas Widen 2025-03-16 17:43:13 +01:00
parent c1e258dc90
commit 9c6ce73028
2 changed files with 24 additions and 23 deletions

View File

@ -55,41 +55,37 @@ The plugin provides three ways to interact with Gemini:
- This will send your current buffer's content as context along with your query - This will send your current buffer's content as context along with your query
- Useful for code-related questions about the file you're working on - Useful for code-related questions about the file you're working on
### Response Window
The AI response appears in a floating window. You can close it using:
- `q` key
- `<Esc>` key
- `<Enter>` key
- `:q` command
## Chat Features
The plugin now maintains a continuous chat session with Gemini:
- All conversations appear in a persistent chat window
- Chat history is maintained throughout the session
- Press `i` in the chat window to enter a new query
- Press `q` to close the chat window (history is preserved)
- Use `:GeminiClearChat` to clear the conversation history
### Chat Window Controls ### Chat Window Controls
While in the chat window: The chat window appears on the right side of your editor and provides the following controls:
- `i`: Enter a new query - `i`: Enter a new query
- `q`: Close the window - `q`: Close the chat window (history is preserved)
- Normal mode scrolling commands work as expected - `<Esc>`: Return focus to previous buffer
- Normal mode scrolling commands (`j`, `k`, `<C-d>`, `<C-u>`, etc.) work as expected
- Window automatically scrolls to show new messages - Window automatically scrolls to show new messages
The chat window appears on the right side of your editor and preserves the entire conversation history until you explicitly clear it or restart Neovim. File operations in the chat window are intentionally disabled:
- `:w`, `:e`, `:sp`, `:vs` and similar commands are blocked
- The command-line mode (`:`) is disabled to prevent file operations
- A warning message appears if you attempt these operations
### Chat Commands
- `:GeminiClearChat`: Clear the conversation history and chat window
- `:Gemini <query>`: Send a query directly from command mode
## Features ## Features
- Floating window interface - Floating window interface with persistent chat history
- Non-blocking API calls - Non-blocking API calls
- Error handling and notifications - Error handling and notifications
- Easy-to-use command and keymap interface - Easy-to-use command and keymap interface
- Support for the latest Gemini 2.0 Flash model - Support for the latest Gemini 2.0 Flash model
- Markdown syntax highlighting for responses
- Context-aware queries using current buffer content
- Automatic scrolling to new messages
- Protected chat window to prevent accidental modifications
## Troubleshooting ## Troubleshooting

View File

@ -104,6 +104,11 @@ local function update_chat_window(new_content)
chat_winnr = nil chat_winnr = nil
end, { buffer = chat_bufnr, nowait = true }) end, { buffer = chat_bufnr, nowait = true })
-- Make Esc return focus to previous window
vim.keymap.set('n', '<Esc>', function()
vim.cmd('wincmd p')
end, { buffer = chat_bufnr, nowait = true })
-- Add input mapping -- Add input mapping
vim.keymap.set('n', 'i', function() vim.keymap.set('n', 'i', function()
vim.ui.input({ prompt = "Gemini: " }, function(input) vim.ui.input({ prompt = "Gemini: " }, function(input)