diff options
author | Gokul Soumya | 2021-11-04 18:33:31 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-02-10 01:52:06 +0000 |
commit | bf773db45171b59a758b7dabf9f10ffb8852dcf0 (patch) | |
tree | 1f472eeaf0f752d2d0af83aeb7b2931811e47e65 /helix-core/src | |
parent | 5995568c1d23239a230d6e1bcbfc370e5c8cd287 (diff) |
Show infobox with register contents
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/register.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-core/src/register.rs b/helix-core/src/register.rs index b9eb497d..b39e4034 100644 --- a/helix-core/src/register.rs +++ b/helix-core/src/register.rs @@ -68,4 +68,8 @@ impl Registers { pub fn read(&self, name: char) -> Option<&[String]> { self.get(name).map(|reg| reg.read()) } + + pub fn inner(&self) -> &HashMap<char, Register> { + &self.inner + } } |