Failed to activate the hex-pane package #299
-
Hi, I'm on Debian 12 and I have a running instance of Atom which I try to migrate to Pulsar. The packages I use seem functional except hex-pane which gives me the following error:
If you have any idea, please let me know, else thanks for reading! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It's using You can get around this by opening let i; on line 2, just below |
Beta Was this translation helpful? Give feedback.
-
Thanks, I also got the same error with the "num" variable. I guess someone added a "use strict" clause somewhere, which was not present in the Atom code. So I got it running by adding the "let" instruction in the for loops:
in the toAddress, toHex and toFormat functions
in the declarative part of the toAddress function. |
Beta Was this translation helpful? Give feedback.
Thanks, I also got the same error with the "num" variable. I guess someone added a "use strict" clause somewhere, which was not present in the Atom code.
So I got it running by adding the "let" instruction in the for loops:
for(let i = 0; i < string.length; i++) {...}
in the toAddress, toHex and toFormat functions
and adding the line
let num = '';
in the declarative part of the toAddress function.