Shougo / neosnippet.vim

neo-snippet plugin
Other
1.12k stars 108 forks source link

Unwanted finalizing marker #464

Closed sudo-nice closed 5 years ago

sudo-nice commented 5 years ago

Let's consider the snippet:

snippet d
  def ${1}
    ${0}
  end

Prior to 9a1f522 it would expectedly expand to:

def [cursor]
  <`0`>
end

But after the mentioned commit it expands to:

def [cursor]
  <`0`>
end<`0`>

Could the previous behaviour be restored, please?

sudo-nice commented 5 years ago

Thank you!