Open sander opened 8 years ago
It seems that some automatic vscode-parinfer edits get added to the undo history stack. For example, when writing (defn foo [ in Indent mode, which is finished automatically with ]), I have to Undo three times with these results:
(defn foo [
])
(defn foo []) → ⌘Z → (defn foo ) → ⌘Z → (defn foo ) → ⌘Z →
(defn foo [])
(defn foo )
This makes undoing feel jerky.
Yeah I noticed the same, need to address this!
It seems that some automatic vscode-parinfer edits get added to the undo history stack. For example, when writing
(defn foo [
in Indent mode, which is finished automatically with])
, I have to Undo three times with these results:(defn foo [])
→ ⌘Z →(defn foo )
→ ⌘Z →(defn foo )
→ ⌘Z →This makes undoing feel jerky.