nvim-autopairs icon indicating copy to clipboard operation
nvim-autopairs copied to clipboard

Wrapping behavior is different for backticks and quotes

Open rob-3 opened this issue 3 years ago • 0 comments

Description

When typing a (, [, or {, pairs with double or single quotes are treated differently than pairs of backticks. For JavaScript/TypeScript, this different treatment is inconsistent between string types. I can't seem to figure out how to change this behavior if it is working as intended.

Mapping bug

No response

Steps to reproduce

  • nvim -u minimal.lua hi.js
  • Type i"<esc>i( and observe that the output is ("")
  • On the line below, type i`<esc>i( and observe that the output is ()``

Minimal config

vim.cmd [[set runtimepath=$VIMRUNTIME]]
vim.cmd [[set packpath=/tmp/nvim/site]]
local package_root = '/tmp/nvim/site/pack'
local install_path = package_root .. '/packer/start/packer.nvim'
local function load_plugins()
  require('packer').startup {
    {
      'wbthomason/packer.nvim',
      {
        'windwp/nvim-autopairs',
      },
      -- ADD PLUGINS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
    },
    config = {
      package_root = package_root,
      compile_path = install_path .. '/plugin/packer_compiled.lua',
      display = { non_interactive = true },
    },
  }
end
_G.load_config = function()
  require('nvim-autopairs').setup()
end
if vim.fn.isdirectory(install_path) == 0 then
  print("Installing nvim-autopairs and dependencies.")
  vim.fn.system { 'git', 'clone', '--depth=1', 'https://github.com/wbthomason/packer.nvim', install_path }
end
load_plugins()
require('packer').sync()
vim.cmd [[autocmd User PackerComplete ++once echo "Ready!" | lua load_config()]]

rob-3 avatar Aug 05 '22 02:08 rob-3