Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xijo/vscode-ruby-copy-modulized
vscode extension to copy modulized version of selected ruby class name
https://github.com/xijo/vscode-ruby-copy-modulized
Last synced: about 2 months ago
JSON representation
vscode extension to copy modulized version of selected ruby class name
- Host: GitHub
- URL: https://github.com/xijo/vscode-ruby-copy-modulized
- Owner: xijo
- License: wtfpl
- Created: 2023-08-11T22:31:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-11T22:44:55.000Z (over 1 year ago)
- Last Synced: 2023-08-12T05:17:13.801Z (over 1 year ago)
- Language: TypeScript
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ruby-copy-modulized README
This extension lets you copy the modulized version of a ruby class or module
from a typical definition.For example, if you have a file like this
```
module Foo
module Some::Thing
class Bar
end
end
end
```it would let you copy `Foo::Some::Thing::Bar` by selecting the first three lines
and executing the command. Selecting other lines produces according results.## Features
Works for modules and classes, both in shortcut form as in full qualified.
Also respects classes within classes.## Release Notes
### 0.0.1
Initial release