diff options
author | Omnikar | 2021-11-08 00:54:39 +0000 |
---|---|---|
committer | GitHub | 2021-11-08 00:54:39 +0000 |
commit | a252ecd8c85af5cc16638a4752011e2e920fa652 (patch) | |
tree | d0622202026845b6e95a2814cb72885fa5049b59 /helix-term/src/ui | |
parent | e0e227d172697c0d3c418704fd20e780ee1a1032 (diff) |
Add WORD textobject (#991)
* Add WORD textobject
* Document WORD textobject
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/prompt.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs index c999ba14..29ca18b1 100644 --- a/helix-term/src/ui/prompt.rs +++ b/helix-term/src/ui/prompt.rs @@ -491,6 +491,7 @@ impl Component for Prompt { doc.selection(view.id).primary(), textobject::TextObject::Inside, 1, + false, ); let line = text.slice(range.from()..range.to()).to_string(); if !line.is_empty() { |