1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# pip-requirements.el
This is a major mode for editing pip requirements files, with the following features:
* Syntax highlighting
* Togglable comments
* Auto completion of package names from PyPI
## Auto Completion
This major mode provides completion of package names from PyPI. It supports
Emacs' built-in `completion-at-point` command and thus also [Company][] via its
generic CAPF backend.
To use [Auto Complete][] instead, add the following to your `init.el`:
```cl
(add-hook 'pip-requirements-mode-hook #'pip-requirements-auto-complete-setup)
```
[Company]: https://github.com/company-mode/company-mode
[Auto Complete]: https://github.com/auto-complete/auto-complete
## Changelog
### 0.5
Added support for completion-at-point-functions. Autocomplete is now
optional, and pip-requirements also works with company (via
`company-capf`).
`.` and `_` are now supported in package names, and `.postN` is now
supported in version numbers.
`pip-requirements-mode` now inherits from `prog-mode`.
`requirements.in` files are now recognised as pip requirements files.
### 0.4
Auto-completion of package names! See screenshot above. Requires
auto-complete, and your Emacs must be compiled with libxml support.
Added support for toggling comments with `M-;`.
### 0.3
Improved syntax highlighting in different version strings. Improved
detection of pip requirements files (it's now anything that matches
`*.pip` or `requirements*.txt`).
### 0.2
First public release, just syntax highlighting.
## Credits
This package is very much inspired by
https://github.com/wuub/requirementstxt for Sublime.
|