Set auto spacing to true by default

This commit is contained in:
ebolam
2022-12-18 11:14:56 -05:00
parent c46dd588be
commit 8105de58a2

View File

@@ -1125,11 +1125,11 @@ class user_settings(settings):
self.socketio = socketio self.socketio = socketio
self.wirmvwhtsp = False # Whether to remove leading whitespace from WI entries self.wirmvwhtsp = False # Whether to remove leading whitespace from WI entries
self.widepth = 3 # How many historical actions to scan for WI hits self.widepth = 3 # How many historical actions to scan for WI hits
self.formatoptns = {'frmttriminc': True, 'frmtrmblln': False, 'frmtrmspch': False, 'frmtadsnsp': False, 'singleline': False} # Container for state of formatting options self.formatoptns = {'frmttriminc': True, 'frmtrmblln': False, 'frmtrmspch': False, 'frmtadsnsp': True, 'singleline': False} # Container for state of formatting options
self.frmttriminc = True self.frmttriminc = True
self.frmtrmblln = False self.frmtrmblln = False
self.frmtrmspch = False self.frmtrmspch = False
self.frmtadsnsp = False self.frmtadsnsp = True
self.singleline = False self.singleline = False
self.remove_double_space = True self.remove_double_space = True
self.importnum = -1 # Selection on import popup list self.importnum = -1 # Selection on import popup list