Skip to content

Edit Settings

Configure editing behavior including the undo history depth.

Open from Settings > Edit (keyboard shortcut: Cmd+, then select the Edit tab).

SettingTypeDefaultDescription
Undo Stepsint100Maximum number of actions kept in the undo history

Controls how many actions Plinken keeps in the undo/redo history. A higher number allows you to undo further back but uses more memory.

Select from the dropdown:

ValueDescription
20Minimal — low memory usage
50Light — suitable for simple sessions
100Default — good balance of depth and memory
200Extended — for complex editing sessions
500Deep — large projects with many edits
1000Unlimited — keeps virtually all actions
  • Increase if you frequently need to undo many steps, or work on complex projects with lots of small edits.
  • Decrease if you’re working on a memory-constrained system or with very large projects.
edit.undo_steps
-- Get current undo steps limit
local steps = pl.cmd("settings:get", { key = "edit.undo_steps" })
-- Set undo history to 200 steps
pl.cmd("settings:set", { key = "edit.undo_steps", value = "200" })
-- Set to maximum (unlimited)
pl.cmd("settings:set", { key = "edit.undo_steps", value = "1000" })
ActionShortcut
UndoCmd+Z
RedoCmd+Shift+Z