Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0c6563f7
Commit
0c6563f7
authored
Sep 14, 1995
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(py-electric-colon): turn off electric behavior inside strings and
comments.
parent
57697af9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
23 deletions
+31
-23
Misc/python-mode.el
Misc/python-mode.el
+31
-23
No files found.
Misc/python-mode.el
View file @
0c6563f7
...
...
@@ -471,31 +471,39 @@ py-beep-if-tab-change\tring the bell if tab-width is changed"
(
defun
py-electric-colon
(
arg
)
"Insert a colon.
In certain cases the line is outdented appropriately. If a numeric
argument is provided, that many colons are inserted non-electrically."
argument is provided, that many colons are inserted non-electrically.
Electric behavior is inhibited inside a string or comment."
(
interactive
"P"
)
(
self-insert-command
(
prefix-numeric-value
arg
))
(
save-excursion
(
let
((
here
(
point
))
(
outdent
0
)
(
indent
(
py-compute-indentation
)))
(
if
(
and
(
not
arg
)
(
py-outdent-p
)
(
=
indent
(
save-excursion
(
forward-line
-1
)
(
py-compute-indentation
)))
)
(
setq
outdent
py-indent-offset
))
;; Don't indent, only outdent. This assumes that any lines that
;; are already outdented relative to py-compute-indentation were
;; put there on purpose. Its highly annoying to have `:' indent
;; for you. Use TAB, C-c C-l or C-c C-r to adjust. TBD: Is
;; there a better way to determine this???
(
if
(
<
(
current-indentation
)
indent
)
nil
(
goto-char
here
)
(
beginning-of-line
)
(
delete-horizontal-space
)
(
indent-to
(
-
indent
outdent
))
))))
;; are we in a string or comment?
(
if
(
save-excursion
(
let
((
pps
(
parse-partial-sexp
(
save-excursion
(
beginning-of-python-def-or-class
)
(
point
))
(
point
))))
(
not
(
or
(
nth
3
pps
)
(
nth
4
pps
)))))
(
save-excursion
(
let
((
here
(
point
))
(
outdent
0
)
(
indent
(
py-compute-indentation
)))
(
if
(
and
(
not
arg
)
(
py-outdent-p
)
(
=
indent
(
save-excursion
(
forward-line
-1
)
(
py-compute-indentation
)))
)
(
setq
outdent
py-indent-offset
))
;; Don't indent, only outdent. This assumes that any lines that
;; are already outdented relative to py-compute-indentation were
;; put there on purpose. Its highly annoying to have `:' indent
;; for you. Use TAB, C-c C-l or C-c C-r to adjust. TBD: Is
;; there a better way to determine this???
(
if
(
<
(
current-indentation
)
indent
)
nil
(
goto-char
here
)
(
beginning-of-line
)
(
delete-horizontal-space
)
(
indent-to
(
-
indent
outdent
))
)))))
(
defun
py-indent-right
(
arg
)
"Indent the line by one `py-indent-offset' level.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment