update description

This commit is contained in:
Valentin Boettcher 2024-09-12 11:28:51 -04:00
parent 13cf915a03
commit fca6fd0851
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE

View file

@ -29,12 +29,13 @@
;;; Commentary: ;;; Commentary:
;; Provides a major-mode for inferior Python process that runs in vterm, and a ;; Provides a major-mode for inferior Python process that runs in
;; minor-mode that extends python-mode to support interaction with the inferior ;; vterm, and a minor-mode that extends python-mode to support
;; Python process. This is primarily useful for running fancy python shells like ;; interaction with the inferior Python process. This is primarily
;; ipython or ptpython. ;; useful for running fancy python shells like ipython or ptpython.
;; This is a straight port of julia-vterm.el by Shigeaki Nishina ;; This is a straight port of julia-vterm.el by Shigeaki Nishina
;; (https://github.com/shg/julia-vterm.el) with only minor modifications. ;; (https://github.com/shg/julia-vterm.el) with some python specific
;; modifications to provide functionality similar to spyder.
;;; Usage: ;;; Usage:
@ -50,7 +51,8 @@
;; ;;
;; Now you can interact with an inferior Python REPL from a Python buffer. ;; Now you can interact with an inferior Python REPL from a Python buffer.
;; ;;
;; C-c C-z in a python-mode buffer to open an inferior Python REPL buffer. ;; C-c C-z in a python-mode buffer to open an inferior Python REPL buffer
;; optionally specifying a session name with a prefix argument
;; C-c C-z in the REPL buffer to switch back to the script buffer. ;; C-c C-z in the REPL buffer to switch back to the script buffer.
;; C-c C-c in the script buffer to send region or current line to REPL. ;; C-c C-c in the script buffer to send region or current line to REPL.
;; ;;