sansarip / owlbear

An experimental Visual Studio Code extension that supports paredit-like structural-editing features for HTML, TypeScript, TypeScript-React, JavaScript, and JavaScript-React.
https://sansarip.github.io/owlbear/
MIT License
36 stars 2 forks source link

Namespace declarations aren't recognized #88

Closed sansarip closed 1 year ago

sansarip commented 1 year ago

Describe the bug Owlbear commands don't seem to work on namespace declarations.

To Reproduce Steps to reproduce the behavior: Attempt kill/cut/copy command at the beginning of the following code:

declare namespace Cypress {
  interface Chainable<Subject> {...}
}

Expected behavior Kill/cut/copy works on namespace declarations.