add(nvim): nvim surround

This commit is contained in:
Léana 江 2023-03-05 12:05:11 +01:00
parent 48f46a956b
commit 83365e0565
3 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,14 @@
require "nvim-surround".setup()
--[[
Old text Command New text
--------------------------------------------------------------------------------
surr*ound_words ysiw) (surround_words)
*make strings ys$" "make strings"
[delete ar*ound me!] ds] delete around me!
remove <b>HTML t*ags</b> dst remove HTML tags
'change quot*es' cs'" "change quotes"
<b>or tag* types</b> csth1<CR> <h1>or tag types</h1>
delete(functi*on calls) dsf function calls
--]]