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
I have recently conducted some research to understand the requirements for implementing this in the script editor.
Configuring the tab and indent properties is a straightforward process:
Tabs
m_edit.SetTabWidth(8);
const auto tabWidth = m_edit.GetTabWidth();
Indent s
m_edit.SetIndent(8);
const auto indentWidth = m_edit.GetIndent();
Use Tabs Stops
m_edit.SetUseTabs(true);
const auto useTabStops = m_edit.GetUseTabs();
Writing the code for the Convert button is challenging. Fortunately, the source code for SciTE is freely available, and I can see how it performs the conversion. However, I need to adapt that code to be compatible with Meeting Schedule Assistant.
I will implement this feature once I have identified a viable solution.
Is your feature request related to a problem? Please describe.
It is not possible to change the size of the tabs / indentations within the editor.
Describe the solution you'd like
The SciTE text editor, utilizing the same Scintilla Control, includes the following feature in the Options menu:
Can we add a similar feature to the Script Editor?
The text was updated successfully, but these errors were encountered: