Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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