alexherbo2 / auto-pairs.kak

Auto-pairing of characters for Kakoune
https://kakoune.org
77 stars 18 forks source link

Bug with current kakoune master ? #43

Closed CharlesGueunet closed 4 years ago

CharlesGueunet commented 4 years ago

Hello.

On Kakoune current master (cfbff4e1), it seems auto-pairs have stopped working. When inserting a "([{' the counterpart character is not inserted automatically.

alexherbo2 commented 4 years ago

@CharlesGueunet All plugins have been updated and do not require-module or enable functionalities on their own.

It has been reflected in the Installation section.

See the discussion: https://github.com/alexherbo2/connect.kak/issues/29

CharlesGueunet commented 4 years ago

All right I just needed to update my conf to:

plug "alexherbo2/prelude.kak"
plug "alexherbo2/auto-pairs.kak" %{
  require-module prelude
  require-module auto-pairs
  auto-pairs-enable
}

Thanks for the help