Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muffinmad/emacs-pdb-capf
Completion-at-point function for pdb (Python debugger)
https://github.com/muffinmad/emacs-pdb-capf
emacs pdb
Last synced: about 2 months ago
JSON representation
Completion-at-point function for pdb (Python debugger)
- Host: GitHub
- URL: https://github.com/muffinmad/emacs-pdb-capf
- Owner: muffinmad
- License: gpl-3.0
- Created: 2020-04-14T18:05:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-06-05T16:19:14.000Z (over 1 year ago)
- Last Synced: 2024-08-05T06:03:21.028Z (5 months ago)
- Topics: emacs, pdb
- Language: Emacs Lisp
- Size: 210 KB
- Stars: 12
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://stand-with-ukraine.pp.ua)
[![License GPL 3](https://img.shields.io/badge/license-GPL_3-green.svg)](http://www.gnu.org/copyleft/gpl.html)
[![MELPA](http://melpa.org/packages/pdb-capf-badge.svg)](http://melpa.org/#/pdb-capf)
# emacs-pdb-capf
`completion-at-point` function for `pdb` (Python debugger)## Usage
Enable pdb completions for specific modes by adding `pdb-capf` to `completion-at-point-functions`, e.g. (for GUD):
```elisp
(add-hook 'pdb-mode-hook
(lambda ()
(add-hook 'completion-at-point-functions
'pdb-capf nil t)))
```## Screenshot