Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
72dddf8b
Commit
72dddf8b
authored
Nov 01, 1994
by
Richard M. Stallman
Browse files
(blink-matching-delay): New variable.
parent
dbc6c26a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lisp/simple.el
lisp/simple.el
+4
-1
No files found.
lisp/simple.el
View file @
72dddf8b
...
...
@@ -2392,6 +2392,9 @@ in the mode line."
(defconst blink-matching-paren-distance 12000
"*If non-nil, is maximum distance to search for matching open-paren.")
(defconst blink-matching-delay 1
"*The number of seconds that `blink-matching-open' will delay at a match.")
(defun blink-matching-open ()
"Move cursor momentarily to the beginning of the sexp before point."
(interactive)
...
...
@@ -2425,7 +2428,7 @@ in the mode line."
(progn
(goto-char blinkpos)
(if (pos-visible-in-window-p)
(sit-for
1
)
(sit-for
blink-matching-delay
)
(goto-char blinkpos)
(message
"Matches %s"
...
...
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