-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plugin crash on ST2 #26
Comments
Same crashing here. |
+1 Using AngularJS and Jade. Here's what seems to crash ST2 when pasting: .holding(style="position: relative;")
.sidetip(style="position: absolute; left: 310px; margin-top: 5px; width: 250px;")
span.help-block.tip(ng-show="orderForm.firstName.$error.tip || orderForm.lastName.$error.tip && !(orderForm.firstName.$error.required || orderForm.lastName.$error.required)") Kirjoita etu- ja sukunimesi.
span.help-block.error(ng-show="orderForm.firstName.$error.required || orderForm.lastName.$error.required && !(orderForm.firstName.$error.tip || orderForm.lastName.$error.tip)")
i.icon-remove
| Etu- tai sukunimi puuttuu!
span.help-block.ok(ng-show="orderForm.firstName.$valid && orderForm.lastName.$valid")
i.icon-ok
| Nimi näyttää hyvältä.
input.name(type="text", name="firstName", ng-model="orderData.firstName", placeholder="Etunimi", validatenames="validatenames")
input.name(type="text", name="lastName", ng-model="orderData.lastName", placeholder="Sukunimi", validatenames="validatenames") When I remove the special accent character (äö), the paste works. Could this be an encoding issue? What is weird that I've been using Jade with Angular quite some time just fine, with accented characters. This just recently started to brake. |
This sounds pretty probable to me, but removing polish characters didn't help in my case. That's the smallest piece of code that made ST2 unresponsive for few seconds:
|
I've been able to get it down to span.help-inline foo. Causes a momentary hangup. Can someone confirm? The dot at the end along with the dots in the classes seems to cause the problems. Without looking at the bundle code, could this be a regexp problem inside the bundle? |
2013/3/4 Alexander Hanhikoski [email protected]
I can:) Same thing here. |
Seems that trailing dot causes the hangup. Maybe because of the alternative multiline syntax? |
I found the breaking commit davidrios@8d92837 |
sorry, my repo was linking to this one incorrectly on the README. this one does not have that bug, and it's already fixed on mine. |
Plugin crashes every time I open the file or paste its content to Sublime Text 2 (OSX Mountain Lion).
I'm using JADE with AngularJS, btw.
index.jade
Any idea what might be the cause of crash?
The text was updated successfully, but these errors were encountered: