https://github.com/lucianoscarpaci/vim-code-assistant
Empower your Vim workflow with an intelligent code assistant that analyzes buffer contents and delivers real-time responses within Vim for enhanced productivity and coding efficiency.
https://github.com/lucianoscarpaci/vim-code-assistant
buffers code-analysis code-assist-tool code-completion coding-exercise developer-tools error-detection productivity-booster software-development vim-plugins
Last synced: about 2 months ago
JSON representation
Empower your Vim workflow with an intelligent code assistant that analyzes buffer contents and delivers real-time responses within Vim for enhanced productivity and coding efficiency.
- Host: GitHub
- URL: https://github.com/lucianoscarpaci/vim-code-assistant
- Owner: lucianoscarpaci
- License: gpl-3.0
- Created: 2023-06-28T03:04:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-01T19:54:15.000Z (about 2 years ago)
- Last Synced: 2025-08-11T04:39:33.307Z (about 2 months ago)
- Topics: buffers, code-analysis, code-assist-tool, code-completion, coding-exercise, developer-tools, error-detection, productivity-booster, software-development, vim-plugins
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vim-code-assistant
code assistant in vim that reads the contents of the buffer and sends a response back in vim
# 1. compile the `chpt.c` file with gcc:```
gcc -o chpt chpt.c
```# 2. compile the `md.c` file with gcc:
```
gcc -o md md.c
```# 3. Make the `md` and `chpt` file executable using the `chmod` command:
```
chmod +x md && chmod +x chpt```
# 3. Move chpt to the /usr/local/bin directory:```
mv chpt /usr/local/bin
```# 4. Edit bash, zsh, or other terminal config with an alias to md.
```
alias md='/path/to/the/md'
```# 5. Create a .md file enter your question and hit the ctrl+[ key for vim and type `:%!chpt` to get your answer.