mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-03 01:25:03 +02:00
fix snippet bug
This commit is contained in:
parent
d7f7db5ad0
commit
e9dc8603c8
5 changed files with 58 additions and 44 deletions
|
@ -182,7 +182,8 @@ features when I have time
|
|||
- https://github.com/pwntester/octo.nvim
|
||||
- configure surround
|
||||
- maybe incorporate ultisnips
|
||||
- switch back to `nvim-autopairs` when/if it doesn't break snippets
|
||||
|
||||
**PLUGIN BUGS**
|
||||
|
||||
- html snippets are broken with vsnip
|
||||
REACT COMMENTING IS A NIGHTMARE (the filetype is just not recognized idk why)
|
||||
|
|
2
init.lua
2
init.lua
|
@ -17,7 +17,7 @@ require('nv-barbar')
|
|||
require('nv-emmet')
|
||||
require('nv-quickscope')
|
||||
require('nv-gitsigns')
|
||||
require('nv-nvim-autopairs')
|
||||
require('nv-autopairs')
|
||||
require('nv-neogit')
|
||||
require('nv-comment')
|
||||
require('nv-rnvimr')
|
||||
|
|
52
lua/nv-autopairs/init.lua
Normal file
52
lua/nv-autopairs/init.lua
Normal file
|
@ -0,0 +1,52 @@
|
|||
-- require('nvim-autopairs').setup()
|
||||
--
|
||||
-- local pairs_map = {
|
||||
-- ["'"] = "'",
|
||||
-- ['"'] = '"',
|
||||
-- ['('] = ')',
|
||||
-- ['['] = ']',
|
||||
-- ['{'] = '}',
|
||||
-- ['`'] = '`',
|
||||
-- ['```'] = '```',
|
||||
-- }
|
||||
-- local disable_filetype = { "TelescopePrompt" }
|
||||
-- local break_line_filetype = nil -- mean all file type
|
||||
-- local html_break_line_filetype = {'html' , 'vue' , 'typescriptreact' , 'svelte' , 'javascriptreact'}
|
||||
-- local ignored_next_char = "%w"
|
||||
--
|
||||
-- local remap = vim.api.nvim_set_keymap
|
||||
-- local npairs = require('nvim-autopairs')
|
||||
--
|
||||
-- -- skip it, if you use another global object
|
||||
-- _G.MUtils= {}
|
||||
--
|
||||
-- vim.g.completion_confirm_key = ""
|
||||
-- MUtils.completion_confirm=function()
|
||||
-- if vim.fn.pumvisible() ~= 0 then
|
||||
-- if vim.fn.complete_info()["selected"] ~= -1 then
|
||||
-- vim.fn["compe#confirm"]()
|
||||
-- return npairs.esc("<c-y>")
|
||||
-- else
|
||||
-- vim.defer_fn(function()
|
||||
-- vim.fn["compe#confirm"]("<cr>")
|
||||
-- end, 20)
|
||||
-- return npairs.esc("<c-n>")
|
||||
-- end
|
||||
-- else
|
||||
-- return npairs.check_break_line_char()
|
||||
-- end
|
||||
-- end
|
||||
--
|
||||
--
|
||||
-- remap('i' , '<CR>','v:lua.MUtils.completion_confirm()', {expr = true , noremap = true})
|
||||
|
||||
-- TODO switch to lua plugin when possible
|
||||
vim.cmd([[
|
||||
let g:lexima_no_default_rules = v:true
|
||||
call lexima#set_default_rules()
|
||||
inoremap <silent><expr> <C-Space> compe#complete()
|
||||
inoremap <silent><expr> <CR> compe#confirm(lexima#expand('<LT>CR>', 'i'))
|
||||
inoremap <silent><expr> <C-e> compe#close('<C-e>')
|
||||
inoremap <silent><expr> <C-f> compe#scroll({ 'delta': +4 })
|
||||
inoremap <silent><expr> <C-d> compe#scroll({ 'delta': -4 })
|
||||
]])
|
|
@ -1,41 +0,0 @@
|
|||
require('nvim-autopairs').setup()
|
||||
|
||||
local pairs_map = {
|
||||
["'"] = "'",
|
||||
['"'] = '"',
|
||||
['('] = ')',
|
||||
['['] = ']',
|
||||
['{'] = '}',
|
||||
['`'] = '`',
|
||||
['```'] = '```',
|
||||
}
|
||||
local disable_filetype = { "TelescopePrompt" }
|
||||
local break_line_filetype = nil -- mean all file type
|
||||
local html_break_line_filetype = {'html' , 'vue' , 'typescriptreact' , 'svelte' , 'javascriptreact'}
|
||||
local ignored_next_char = "%w"
|
||||
|
||||
local remap = vim.api.nvim_set_keymap
|
||||
local npairs = require('nvim-autopairs')
|
||||
|
||||
-- skip it, if you use another global object
|
||||
_G.MUtils= {}
|
||||
|
||||
vim.g.completion_confirm_key = ""
|
||||
MUtils.completion_confirm=function()
|
||||
if vim.fn.pumvisible() ~= 0 then
|
||||
if vim.fn.complete_info()["selected"] ~= -1 then
|
||||
vim.fn["compe#confirm"]()
|
||||
return npairs.esc("<c-y>")
|
||||
else
|
||||
vim.defer_fn(function()
|
||||
vim.fn["compe#confirm"]("<cr>")
|
||||
end, 20)
|
||||
return npairs.esc("<c-n>")
|
||||
end
|
||||
else
|
||||
return npairs.check_break_line_char()
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
remap('i' , '<CR>','v:lua.MUtils.completion_confirm()', {expr = true , noremap = true})
|
|
@ -116,7 +116,9 @@ return require('packer').startup(function(use)
|
|||
use 'monaqa/dial.nvim'
|
||||
use 'junegunn/goyo.vim'
|
||||
use 'andymass/vim-matchup'
|
||||
use 'windwp/nvim-autopairs'
|
||||
use 'cohama/lexima.vim'
|
||||
-- TODO switch back when config support snips
|
||||
-- use 'windwp/nvim-autopairs'
|
||||
|
||||
-- TODO put this back when stable for indent lines
|
||||
-- vim.g.indent_blankline_space_char = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue