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
Copy file name to clipboardExpand all lines: lua/auto-session/config.lua
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ local defaults = {
120
120
121
121
-- Misc
122
122
log_level="error", -- Sets the log level of the plugin (debug, info, warn, error).
123
-
root_dir=vim.fn.stdpath"data" .."/sessions/", -- Root dir where sessions will be stored
123
+
root_dir=vim.fn.stdpath("data").."/sessions/", -- Root dir where sessions will be stored
124
124
show_auto_restore_notif=false, -- Whether to show a notification when auto-restoring
125
125
restore_error_handler=nil, -- Function called when there's an error restoring. By default, it ignores fold errors otherwise it displays the error and returns false to disable auto_save
126
126
continue_restore_on_error=true, -- Keep loading the session even if there's an error
@@ -143,7 +143,7 @@ local defaults = {
143
143
144
144
---@typeSessionControl
145
145
session_control= {
146
-
control_dir=vim.fn.stdpath"data" .."/auto_session/", -- Auto session control dir, for control files, like alternating between two sessions with session-lens
146
+
control_dir=vim.fn.stdpath("data").."/auto_session/", -- Auto session control dir, for control files, like alternating between two sessions with session-lens
147
147
control_filename="session_control.json", -- File name of the session control file
148
148
},
149
149
},
@@ -303,7 +303,7 @@ function M.check(logger, show_full_message)
0 commit comments