-
-
Notifications
You must be signed in to change notification settings - Fork 35
Fix select highlight after & operator #165
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
Conversation
This does not completely fix #149. Here's a snippet which will cause this to fail:
Note, this is fixed-format Fortran, not free-format. |
@kc9jud, Thanks for the feedback ... I think that's because you have a different |
Meh ... More stuff wrong, besides that |
@kc9jud, I'm not able to transform the |
Is this good enough to be merged @pedro-ricardo? Even it it not cover all the cases it is already an improvement. Or I am missing something? |
Yep, That's basicaly it 👍 |
### Check List - Highlight - [x] `select` keyword - *Merge #165 to fix #149* - [x] `rank` keyword - *Merge #165* - [x] `forall` keyword - *Merge #170 to fix #169* - Symbol List - [x] Symbols bug in VSCode +1.40 - *Merge #161 to fix #154* - [x] Symbols classification - *Merge #141 to fix #140* - [x] Long named symbols - *Merge #151* - Settings - [x] Add more options - *Merge #152* - Dependencies - [x] Merge `dependabot` PR's - [x] lodash - *Merge #144* - [x] mixin-deep - *Merge #146* - [x] handlebars - *Merge #155* - Code Completion - [x] Array constructor - *Fix #148* - New Features - [x] Breakpoints - *Merge #150*
…tran-lang#202, (fortran-lang#203) while also providing a more elegant solution to commit a4eaca4 for PR fortran-lang#165.
The error reported in #149 was in the
line-continuation-operator
pattern that was missing from bothname-list
andattribute-list
scopes used in declaration statements.Before this change:
After this change: