Replies: 1 comment
-
Correct. I mentioned that in one of the threads, The source can be updated to allow line numbers, but I'm pretty busy with important tasks at the moment. Additionally, some errors in a project's code may effect the indent and other functions. The VB object model does not always work in full while certain errors are detected, so any subsequent functions that depend on it may not always be possible, until resolved. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
code indent is not that compatible with code line number.
i write a code like this:
Sub test()
1 Call test1
End Sub
if i add a line before line 1, use Enter button, the code will be like this:
Sub test()
1 Call test1 'here it add unexpected indent for unknown reason.
End Sub
and also when we i debug mode, we direct mouse cursor into code, the code will automatically add unexpected indent too.
Beta Was this translation helpful? Give feedback.
All reactions