/
ilya-grigoriev
/
nvim
Обзор
Документация
Войти
/
ilya-grigoriev
/
nvim
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
plugin/surround_text.lua
22 строки
517 B
Ilya Grigoryev
feat: moved other plugins to `plugin` folder
02 ноя 2023, 18:42
02 ноя 2023, 18:42
a33f522
Код
Авторство
О чём код?
local symbols_pairs = { ['"'] = '"', ["'"] = "'", ['{'] = '}', ['['] = ']', ['<'] = '>', ['('] = ')', ['*'] = '*', ['-'] = '-', ['#'] = '#', ['%'] = '%', ['`'] = '`', } local template_lhs = 'yw%s' local template_rhs = 'c%s<Esc>pa%s<Esc>' for left_pair, right_pair in pairs(symbols_pairs) do local lhs = string.format(template_lhs, left_pair) local rhs = string.format(template_rhs, left_pair, right_pair) vim.keymap.set('v', lhs, rhs, { noremap = true }) end