Falko Victor Habel d1ccb89544 | ||
---|---|---|
.vscode | ||
src | ||
.eslintrc.js | ||
.gitignore | ||
2exe.txt | ||
LICENSE | ||
README.md | ||
demo.gif | ||
icon.png | ||
package.json | ||
tsconfig.json |
README.md
Fabelous Autocoder
Fabelous Autocoder is a powerful VS Code extension that provides intelligent code completion using advanced language models. It offers seamless integration with your development workflow, allowing you to generate and preview code suggestions with ease.
Features
- Intelligent Code Completion: Leverages advanced language models to provide context-aware code suggestions.
- Preview Functionality: View generated code completions before accepting them.
- Easy Accept/Decline: Use simple keyboard shortcuts to accept or decline suggestions.
- Customizable: Configure various parameters like API endpoint, model, and response behavior.
- Language Agnostic: Works with multiple programming languages.
How It Works
- Trigger the autocompletion by typing a completion key (configurable, default is space).
- The extension sends your current code context to the configured API.
- A code completion is generated and displayed as a preview.
- Accept the completion with
Tab
or decline it withBackspace
.
Usage
- Trigger Completion: Type normally and hit the completion key (space by default).
- Preview: The suggested completion appears in light gray text.
- Accept: Press
Tab
to accept the entire suggestion. - Decline: Press
Backspace
to remove the preview and decline the suggestion. - Partial Accept: You can continue typing to partially accept the suggestion.
Configuration
Customize Fabelous Autocoder through VS Code settings:
fabelous-autocoder.endpoint
: API endpoint for the language model.fabelous-autocoder.model
: Specify the model to use.fabelous-autocoder.temperature
: Control the randomness of completions.fabelous-autocoder.max tokens predicted
: Set the maximum length of completions.fabelous-autocoder.prompt window size
: Adjust the context window size.fabelous-autocoder.completion keys
: Set custom completion trigger keys.fabelous-autocoder.response preview
: Toggle preview functionality.fabelous-autocoder.preview max tokens
: Limit preview length.fabelous-autocoder.preview delay
: Add delay before showing preview.fabelous-autocoder.continue inline
: Control inline continuation behavior.
Installation
- Click here to download the latest version
- Open Visual Studio Code
- Go to Extensions (Ctrl+Shift+X)
- Click on the three dots in the upper-right corner and select "Install from VSIX..."
- Navigate to the location where you extracted Fabelous Autocoder and select the .vsix file
- Click "Install" to install the extension
Requirements
- VS Code version 1.89.0 or higher
- Internet connection for API calls