python-mode

(★ 21)

Edit, debug, develop, run Python programs

File Explorer

  • byte-compile-directory.sh
  • CONTRIBUTING.md
  • CREDITS
  • INSTALL
  • INSTALL-INFO-FILES
  • IPYTHON
  • LICENSE
  • MANIFEST.in
  • NEWS
  • PROBLEMS.org
  • py-setup-ert-tests.el
  • pyflakespep8.py
  • python-mode-compile.sh
  • python-mode-pkg.el
  • python-mode.el
  • README-PYMACS.org
  • README.md
  • README_AUTOPAIR.org
  • README_DEVEL.org
  • run-tests.sh
  • setup.py
  • ToDo.org

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

select

View Details ▼

Bash builtin construct for creating menus.

select {{word}} in {{apple orange pear banana}}; do echo ${{word}}; done

Create a menu out of individual words:

select {{line}} in $({{command}}); do echo ${{line}}; done

Create a menu from the output of another command:

PS3="{{Select a file: }}"; select {{file}} in *; do echo ${{file}}; done

Specify the prompt string for `select` and create a menu for picking a file or folder from the current directory:

// repository documentation