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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
;;; emacspeak-python.el --- Speech enable Python development environment -*- lexical-binding: t; -*-
;;; $Id$
;;; $Author: tv.raman.tv $
;;; Description: Auditory interface to python mode
;;; Keywords: Emacspeak, Speak, Spoken Output, python
;;{{{ LCD Archive entry:
;;; LCD Archive Entry:
;;; emacspeak| T. V. Raman |tv.raman.tv@gmail.com
;;; A speech interface to Emacs |
;;; $Date: 2007-08-25 18:28:19 -0700 (Sat, 25 Aug 2007) $ |
;;; $Revision: 4532 $ |
;;; Location undetermined
;;;
;;}}}
;;{{{ Copyright:
;;; Copyright (c) 1995 -- 2018, T. V. Raman
;;; All Rights Reserved.
;;;
;;; This file is not part of GNU Emacs, but the same permissions apply.
;;;
;;; GNU Emacs is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 2, or (at your option)
;;; any later version.
;;;
;;; GNU Emacs is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Emacs; see the file COPYING. If not, write to
;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;;}}}
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;{{{ Introduction
;;; Commentary:
;;; This speech-enables python-mode bundled with Emacs
;;; Code:
;;}}}
;;{{{ Required modules
(require 'cl-lib)
(cl-declaim (optimize (safety 0) (speed 3)))
(require 'emacspeak-preamble)
(require 'python "python" 'no-error)
;;}}}
;;{{{ interactive programming
(defadvice python-check (after emacspeak pre act comp)
"Provide auditory feedback."
(when (ems-interactive-p)
(emacspeak-auditory-icon 'task-done)))
(cl-loop
for f in
'(
python-shell-send-region python-shell-send-defun
python-shell-send-file python-shell-send-buffer
python-shell-send-string python-shell-send-string-no-output)
do
(eval
`(defadvice ,f (after emacspeak pre act comp)
"Provide auditory feedback"
(when (ems-interactive-p)
(emacspeak-auditory-icon 'task-done)))))
;;}}}
;;{{{ whitespace management and indentation
(defadvice python-indent-dedent-line (after emacspeak pre act comp)
"Provide auditory feedback."
(when (ems-interactive-p)
(emacspeak-speak-line)
(emacspeak-auditory-icon 'right)))
(defadvice python-indent-dedent-line-backspace (around emacspeak pre act)
"Speak character you're deleting."
(cond
((ems-interactive-p)
(let ((ws (= 32 (char-syntax (preceding-char)))))
(dtk-tone 500 100 'force)
(unless ws (emacspeak-speak-this-char (preceding-char)))
ad-do-it
(when ws (dtk-notify-speak (format "Indent %s " (current-column))))))
(t ad-do-it))
ad-return-value)
(defadvice python-fill-paragraph (after emacspeak pre act comp)
"Provide auditory feedback."
(when (ems-interactive-p)
(emacspeak-auditory-icon 'fill-object)))
(defadvice python-indent-shift-left (after emacspeak pre act comp)
"Speak number of lines that were shifted"
(when (ems-interactive-p)
(emacspeak-auditory-icon 'left)
(dtk-speak
(format "Left shifted block containing %s lines"
(count-lines (region-beginning)
(region-end))))))
(defadvice python-indent-shift-right (after emacspeak pre act comp)
"Speak number of lines that were shifted"
(when (ems-interactive-p)
(dtk-speak
(format "Right shifted block containing %s lines"
(count-lines (region-beginning)
(region-end))))))
(defadvice python-indent-region (after emacspeak pre act comp)
"Speak number of lines that were shifted"
(when (ems-interactive-p)
(emacspeak-auditory-icon 'right)
(dtk-speak
(format "Indented region containing %s lines"
(count-lines (region-beginning)
(region-end))))))
;;}}}
;;{{{ buffer navigation
(cl-loop
for f in
'(
python-nav-up-list python-nav-if-name-main python-nav-forward-statement
python-nav-forward-sexp-safe python-nav-forward-sexp python-nav-forward-defun
python-nav-forward-block python-nav-end-of-statement python-nav-end-of-defun
python-nav-end-of-block python-nav-beginning-of-statement python-nav-beginning-of-block
python-nav-backward-up-list python-nav-backward-statement python-nav-backward-sexp-safe
python-nav-backward-sexp python-nav-backward-defun python-nav-backward-block
)
do
(eval
`(defadvice ,f (after emacspeak pre act comp)
"Provide auditory feedback."
(when (ems-interactive-p)
(emacspeak-speak-line)
(emacspeak-auditory-icon 'paragraph)))))
;;}}}
(provide 'emacspeak-python)
;;{{{ end of file
;;; local variables:
;;; folded-file: t
;;; end:
;;}}}
|