reactionview 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/reactionview-dev-tools.esm.js +3 -0
- data/app/assets/javascripts/reactionview-dev-tools.esm.js.map +1 -1
- data/app/assets/javascripts/reactionview-dev-tools.umd.js +3 -0
- data/app/assets/javascripts/reactionview-dev-tools.umd.js.map +1 -1
- data/lib/generators/reactionview/install_generator.rb +7 -2
- data/lib/reactionview/config.rb +2 -0
- data/lib/reactionview/railtie.rb +1 -1
- data/lib/reactionview/template/handlers/herb.rb +8 -1
- data/lib/reactionview/version.rb +1 -1
- data/reactionview.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e1a5390cd92d576fc8ec4b4baaa48a0cb5295cffaca784418ec813fb1df5cb5
|
4
|
+
data.tar.gz: 5a0b9bc625badb41203e2db46bed4f356d14811dced90e63282db300c959eada
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 462b5f1c1ab86c8d138980ef82792ab004144f8d1b7f12cb8afec72d61eedd5e51d9f06a8af75c8b000e720625f3f7b86010dd4afaa9c04fe27c2cc53344f38d
|
7
|
+
data.tar.gz: a8e96b0cb994853857e04741043173149c40b7afdfb0f1a0fa12c031ea8f6c14bc073119a010c6687547e0f407be50c95ee1674acf79b61267b41cc388d41400
|
@@ -1592,10 +1592,13 @@ class HerbOverlay {
|
|
1592
1592
|
openFileInEditor(file, line, column) {
|
1593
1593
|
const absolutePath = file.startsWith('/') ? file : (this.projectPath ? `${this.projectPath}/${file}` : file);
|
1594
1594
|
const editors = [
|
1595
|
+
`cursor://file/${absolutePath}:${line}:${column}`,
|
1595
1596
|
`vscode://file/${absolutePath}:${line}:${column}`,
|
1597
|
+
`zed://file/${absolutePath}:${line}:${column}`,
|
1596
1598
|
`subl://open?url=file://${absolutePath}&line=${line}&column=${column}`,
|
1597
1599
|
`atom://core/open/file?filename=${absolutePath}&line=${line}&column=${column}`,
|
1598
1600
|
`txmt://open?url=file://${absolutePath}&line=${line}&column=${column}`,
|
1601
|
+
`x-mine://open?file=//${absolutePath}&line=${line}&column=${column}`,
|
1599
1602
|
];
|
1600
1603
|
try {
|
1601
1604
|
window.open(editors[0], '_self');
|