https://github.com/tushortz/intellekt
A sublime text plugin that attempts to provide intellisense for various programming languages
https://github.com/tushortz/intellekt
Last synced: about 2 months ago
JSON representation
A sublime text plugin that attempts to provide intellisense for various programming languages
- Host: GitHub
- URL: https://github.com/tushortz/intellekt
- Owner: tushortz
- License: mit
- Created: 2018-12-07T01:18:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-25T15:38:46.000Z (over 6 years ago)
- Last Synced: 2025-04-04T23:33:08.790Z (2 months ago)
- Language: Python
- Size: 856 KB
- Stars: 18
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Intellekt
A sublime text plugin that attempts to provide intellisense for various languages
## Features
### Java
* Method autocomplete suggestions based on imported class
* import autocomplete suggestions and navigation to documentation url
* view class/package description on click to line then hover
### Python
* Method autocompletion
## Recommended settings
In `Preferences.sublime-settings`, add the following:
```json
"intellekt": {
"python_path": "C:\\Program Files (x86)\\Python37-32"
},
"auto_complete_triggers": [
{"selector": "source.python", "characters": "."}
]
```> Make sure to replace the python_path with the correct python_path
## TODO
* [x] Java
* [x] Python
* [ ] Ruby
* [ ] QT C++
* [ ] C/C++
* [ ] CSS
* [ ] HTML
* [ ] Javascript
* [ ] Dictionary
* [ ] MatLab
* [ ] Perland other suggestions
> Note:
>
> 1. This is meant to be a replacement of [LangDocs](https://github.com/tushortz/LangDocs) and [JavaIME](https://github.com/tushortz/JavaIME) which I will discontinue once this is complete.
>
> 2. Some snippets may affect the completions from showing. You may have to disable them before using this plugin