aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/auto_pairs.rs
diff options
context:
space:
mode:
authorKirawi2021-10-25 16:02:16 +0000
committerGitHub2021-10-25 16:02:16 +0000
commit92c2d5d3bffb52a165fad75b6db2120de37b5ae4 (patch)
treefc329d26052a8bfdb83e99c75564ef68b7ba5f2d /helix-core/src/auto_pairs.rs
parentacc5ac5e731ea978fdd8a0f6762f2cd5101780b2 (diff)
Document more of helix-core (#904)
Diffstat (limited to 'helix-core/src/auto_pairs.rs')
-rw-r--r--helix-core/src/auto_pairs.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-core/src/auto_pairs.rs b/helix-core/src/auto_pairs.rs
index 9b901e9b..cc966852 100644
--- a/helix-core/src/auto_pairs.rs
+++ b/helix-core/src/auto_pairs.rs
@@ -1,3 +1,6 @@
+//! When typing the opening character of one of the possible pairs defined below,
+//! this module provides the functionality to insert the paired closing character.
+
use crate::{Range, Rope, Selection, Tendril, Transaction};
use smallvec::SmallVec;