Set tabulation width in Menu

Post Reply
rh54
Posts: 5
Joined: 01.02.2022 10:16

Set tabulation width in Menu

Post by rh54 »

There are a few commands that can be used in the Config Menu plugin to configure tabulation:

cmd_ToggleTabUsesSpaces
cmd_ConvertTabsToSpaces
cmd_ConvertSpacesToTabsLeading
cmd_ConvertTabsToSpacesLeading

Is there also such a command to set the tabulation width?
main Alexey
Posts: 2706
Joined: 25.08.2021 18:15

Post by main Alexey »

no such command, but can be easily called by plugin.
eg in the Console enter:

ed.set_prop(PROP_TAB_SIZE, 2)
or
ed.set_prop(PROP_TAB_SIZE, 9)
rh54
Posts: 5
Joined: 01.02.2022 10:16

Post by rh54 »

Thanks a lot for your reply!
main Alexey
Posts: 2706
Joined: 25.08.2021 18:15

Post by main Alexey »

Post Reply