CodeContinue - AI Code Completion for Sublime Text
=====================================================

Welcome! CodeContinue is now installed and ready to use.

SETUP
-----
On your first use, you'll be prompted to configure:
1. Your API endpoint (OpenAI-compatible v1/chat/completions)
2. Your model name
3. Your API key

You can also configure anytime via Command Palette:
  Ctrl+Shift+P → "CodeContinue: Configure"

Or manually:
  Preferences > Package Settings > CodeContinue > Settings

QUICK START
-----------
1. Open a Python, C++, or JavaScript file
2. Press Enter at the end of a line - suggestions auto-trigger!
3. Press Tab to accept the suggestion (gray inline text)
4. For multi-line suggestions, press Tab multiple times

Alternative: Manual trigger via Ctrl+Shift+P → "CodeContinue: Suggest"

DEFAULT KEYBINDING
------------------
• Tab - Accept suggestion

If Tab conflicts with your workflow, customize it:
  Preferences > Package Settings > CodeContinue > Key Bindings

Example alternatives: Right arrow, Ctrl+Right, End, etc.

ENDPOINTS & MODELS
------------------
OpenAI:
  Endpoint: https://api.openai.com/v1/chat/completions
  Model: gpt-3.5-turbo or gpt-4

Local Server (e.g., Ollama, LM Studio):
  Endpoint: http://localhost:8000/v1/chat/completions
  Model: Your local model name

For more details, see the README file.

Need help? Check the documentation at:
https://github.com/kXborg/codeContinue
