Skip to content

Commit 3ba4cac

Browse files
committed
fixup! 355: Support deleting/changing custom surrounds
1 parent 7660752 commit 3ba4cac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

import/surround.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ enddef
5454
def CustomSurroundings(char: string, d: dict<any>, trim: bool): list<string>
5555
var all = Process(get(d, printf('surround_%d', char2nr(char))))
5656
var before = ExtractBefore(all)
57-
var after = ExtractBefore(all)
57+
var after = ExtractAfter(all)
5858

5959
return trim ? [trim(before), trim(after)] : [before, after]
6060
enddef

0 commit comments

Comments
 (0)