summaryrefslogtreecommitdiff
path: root/devdocs/elisp/blinking.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/elisp/blinking.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/elisp/blinking.html')
-rw-r--r--devdocs/elisp/blinking.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/devdocs/elisp/blinking.html b/devdocs/elisp/blinking.html
deleted file mode 100644
index 100d9f24..00000000
--- a/devdocs/elisp/blinking.html
+++ /dev/null
@@ -1,26 +0,0 @@
- <h3 class="section">Blinking Parentheses</h3> <p>This section describes the mechanism by which Emacs shows a matching open parenthesis when the user inserts a close parenthesis. </p> <dl> <dt id="blink-paren-function">Variable: <strong>blink-paren-function</strong>
-</dt> <dd><p>The value of this variable should be a function (of no arguments) to be called whenever a character with close parenthesis syntax is inserted. The value of <code>blink-paren-function</code> may be <code>nil</code>, in which case nothing is done. </p></dd>
-</dl> <dl> <dt id="blink-matching-paren">User Option: <strong>blink-matching-paren</strong>
-</dt> <dd><p>If this variable is <code>nil</code>, then <code>blink-matching-open</code> does nothing. </p></dd>
-</dl> <dl> <dt id="blink-matching-paren-distance">User Option: <strong>blink-matching-paren-distance</strong>
-</dt> <dd><p>This variable specifies the maximum distance to scan for a matching parenthesis before giving up. </p></dd>
-</dl> <dl> <dt id="blink-matching-delay">User Option: <strong>blink-matching-delay</strong>
-</dt> <dd><p>This variable specifies the number of seconds to keep indicating the matching parenthesis. A fraction of a second often gives good results, but the default is 1, which works on all systems. </p></dd>
-</dl> <dl> <dt id="blink-matching-open">Command: <strong>blink-matching-open</strong>
-</dt> <dd>
-<p>This function is the default value of <code>blink-paren-function</code>. It assumes that point follows a character with close parenthesis syntax and applies the appropriate effect momentarily to the matching opening character. If that character is not already on the screen, it displays the character’s context in the echo area. To avoid long delays, this function does not search farther than <code>blink-matching-paren-distance</code> characters. </p> <p>Here is an example of calling this function explicitly. </p> <div class="example"> <pre class="example">(defun interactive-blink-matching-open ()
- "Indicate momentarily the start of parenthesized sexp before point."
- (interactive)
-</pre>
-<pre class="example"> (let ((blink-matching-paren-distance
- (buffer-size))
- (blink-matching-paren t))
- (blink-matching-open)))
-</pre>
-</div> </dd>
-</dl><div class="_attribution">
- <p class="_attribution-p">
- Copyright &copy; 1990-1996, 1998-2022 Free Software Foundation, Inc. <br>Licensed under the GNU GPL license.<br>
- <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Blinking.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Blinking.html</a>
- </p>
-</div>