After updating to sublime text 3103 syntax highlighting in JSPs does not work correctly any longer if there is a sub-tag involved. I place a snippet below where syntax is fine until the <c:if tag. The text below is then green (comments) which is wrong.
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("input:text:visible:first").focus();
jQuery("#scheduledPaymentDate").mask("99-99-9999", {placeholder: "_"});
toggleAgreedPaidOrReceivedField(false);
toggleAgreedPaidOrReceivedVatEnabledFields(false);
jQuery("#removeVatComponent").hide();
<c:if test="${claimBooking.claim.holding.isTemplateBased == false}">
submitMemberInsuredFormChange(${claimBooking.claimedCover.holdingCoverageID});
</c:if>
if(${exceededClaimableAmountPerPolicy} > 0){
jQuery("#exceedingMaxSumInsuredComponent").show();
I am looking forward for any assistance to get this resolved.
Can this please be fixed?
Daniel