You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given my project path: ~/dev/java/project-1/.../java/com/...
The feature that creates interface, enum, classes, fails on finding my java/ folder inside the project, I fixed it by changing the path on my system to : ~/dev/_java/project-1/.../java/com/...
Note that any parent folder begining with /java ,as for example ~/dev/java-something , will collide with this functionality, finding the wrong folder to create the package structure and thus creating a new structure like ~/dev/java/com/.../your_new_class.java
The issue might be here on this function , maybe the path_pattern would be the key, or doing the match from right to left instead. generateclass.lua
Given my project path:
~/dev/java/project-1/.../java/com/...
The feature that creates interface, enum, classes, fails on finding my
java/
folder inside the project, I fixed it by changing the path on my system to :~/dev/_java/project-1/.../java/com/...
Note that any parent folder begining with /java ,as for example
~/dev/java-something
, will collide with this functionality, finding the wrong folder to create the package structure and thus creating a new structure like~/dev/java/com/.../your_new_class.java
The issue might be here on this function , maybe the path_pattern would be the key, or doing the match from right to left instead.
generateclass.lua
Thanks for all the work!
The text was updated successfully, but these errors were encountered: