JunSuzukiJapan / atom-keyboard-macros-vim

MIT License
17 stars 7 forks source link

Macros do not respect multiple playbacks accurately (ex. 2@f) #14

Closed fritogotlayed closed 7 years ago

fritogotlayed commented 7 years ago

Symptom

Macros do not respect multiple playbacks accurately (ex. 2@f)

Steps To Reproduce

Input Data

  // Already formatted data here
  {
    a: "name 1",
    b: {
        x: 1,
        y: 1
    }
}, {
    a: "name 2",
    b: {
        x: 2,
        y: 2
    }
}, {
  // More data here ...

Expected Result

  { name: "name 1", location: { x: 1, y: 1 } },
  { name: "name 2", location: { x: 2, y: 2 } },
  {

Actual Result

  { a: "name 1", name: { location: 1, y: 1 } }, {a: 
    "name 2", 
    b: { 
         x: 2,
         y: 2
    }
 }, {

Tested Versions

NOTE: If there's any more information I can provide please let me know and I will gather it for you.

mayask commented 7 years ago

Duplicate https://github.com/JunSuzukiJapan/atom-keyboard-macros-vim/issues/9