targets.vim icon indicating copy to clipboard operation
targets.vim copied to clipboard

Inconsistent behavior in default seek ranges

Open pedro757 opened this issue 5 years ago • 0 comments

I have this javascript code. I'm trying to change the content of the Try Block from the bigining of the line, so i use c2iB see the outputs in the comments:

module.exports = app => {
  app.get('/something', async (req, res) => { // Changes from this "{"

    try { // expected from this "{"
      const { data: { data } } = await axios.post('') // Here I type _c2iB
    } // Expected to this "}"

  }) // To this "}"
}

I'm using the default seek ranges

let g:targets_seekRanges = 'cc cr cb cB lc ac Ac lr rr ll lb ar ab lB Ar aB Ab AB rb al rB Al bb aa bB Aa BB AA'

pedro757 avatar Jan 26 '21 03:01 pedro757