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
If indent-tabs-mode is enabled, then lispy-tab (and by extension special-lispy-tab) will still insert spaces.
For example, with this block of code:
(print (+ 1
2
(*
3
4)))
If tab-width is set to 8, and indent-tabs-mode is enabled, indent-region will add tabs in each line, while lispy-tab will only add spaces. Furthermore, lispy-tab will actually convert tabs into spaces.
The text was updated successfully, but these errors were encountered:
If
indent-tabs-mode
is enabled, thenlispy-tab
(and by extensionspecial-lispy-tab
) will still insert spaces.For example, with this block of code:
If
tab-width
is set to 8, andindent-tabs-mode
is enabled,indent-region
will add tabs in each line, whilelispy-tab
will only add spaces. Furthermore,lispy-tab
will actually convert tabs into spaces.The text was updated successfully, but these errors were encountered: