https://github.com/jakbin/kamal
kamal is plugin for sublime text 4 to check syntax errors, variable errors and auto completion in python code.
https://github.com/jakbin/kamal
st4 sublime-auto-completion sublime-python sublime-syntax sublime-text sublime-text-4
Last synced: 5 months ago
JSON representation
kamal is plugin for sublime text 4 to check syntax errors, variable errors and auto completion in python code.
- Host: GitHub
- URL: https://github.com/jakbin/kamal
- Owner: jakbin
- License: mit
- Created: 2025-02-11T19:19:01.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-03-16T14:47:42.000Z (10 months ago)
- Last Synced: 2025-03-16T15:45:53.676Z (10 months ago)
- Topics: st4, sublime-auto-completion, sublime-python, sublime-syntax, sublime-text, sublime-text-4
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kamal
kamal is plugin for sublime text to check syntax errors, variable errors and auto completion in python code.
## Installation
### Install via Package Control (Recommended)
1. Open the Command Palette in Sublime Text (`Ctrl+Shift+P` or `Cmd+Shift+P`).
2. Select `Package Control: Install Package`.
3. Search for `kamal` and install it.
---
## Manual installation :-
### Syntax Errors Checker :-
Open sublime Packages directory. (Preferences > Browse packages...)
For Linux
```sh
cd ~/.config/sublime-text/Packages/User
```
Then install `jedi` module with pip.
```bash
pip install jedi --target=jedi_lib
```
Then download and move `syntax_checker.py` file also in that directory.
### Auto Completion :-
Install jedi using above method.
Then download and move `auto_completion.py` file also in that directory.
### Variable Errors Checker :-
Open sublime Packages directory. (Preferences > Browse packages...)
For Linux
```sh
cd ~/.config/sublime-text/Packages/User
```
Then download and move `variable_checker.py` file also in that directory.