Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/core-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,6 @@ Quick terminal debug: Use `CMD+SHIFT+R` to add the last terminal text to your ch
```

This flexibility enables you to create powerful and reusable custom commands tailored to your specific workflow needs.

If you'd also like to have tab autocomplete feature within PearAI, follow [this](https://trypear.ai/docs/tab-autocomplete).

4 changes: 4 additions & 0 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,7 @@ keywords: [quickstart, start, install, vscode, jetbrains]
<source src="/docs/videos/cmd+l-documentation.webm" type="video/webm" />
Your browser does not support the video tag.
</video>



If you'd also like to have tab autocomplete feature within PearAI, follow [this](https://trypear.ai/docs/tab-autocomplete).
34 changes: 34 additions & 0 deletions docs/tab-autocomplete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
title: ✅ Tab Autocomplete
description: PearAI is the open-source autopilot for software development
keywords: [shortcuts, pearai, important shortcuts, pear ai shortcuts]
sidebar_position: 3
---

# ✅ Tab AutoComplete

PearAI supports tab autocomplete, which predicts and suggests what you would type next as you're coding. Here's how to set it up:

## Setup Guide

1. **Setup Codestral**

We recommend using Codestral, the leading model for code completion (or FIM — Fill In Middle). It's also open-sourced! You'll need to obtain a Codestral API key from [Mistral API](https://console.mistral.ai).

2. **Add to PearAI config.json**

Add the following to your config.json file (replace "YOUR_API_KEY" with your actual API key):

```json
"tabAutocompleteModel": {
"title": "Codestral",
"provider": "mistral",
"model": "codestral-latest",
"apiKey": "YOUR_API_KEY"
}

3. **Enjoy the development speed up with autocomplete!**




1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const sidebars = {
"quickstart",
"demos",
"important-shortcuts",
"tab-autocomplete",
"codebase-context",
"common-use-cases",
{
Expand Down