summaryrefslogtreecommitdiff
path: root/stowables-dotlocal/share/nvim/site/pack/manual/start/nvim-surround-v2.1.7/tests/jumps_spec.lua
blob: f739215d7ef0627649670ee3433cfe7d027b0650 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
local get_curpos = function()
    local curpos = vim.api.nvim_win_get_cursor(0)
    return { curpos[1], curpos[2] + 1 }
end
local set_curpos = function(pos)
    vim.api.nvim_win_set_cursor(0, { pos[1], pos[2] - 1 })
end
local set_lines = function(lines)
    vim.api.nvim_buf_set_lines(0, 0, -1, false, lines)
end
local check_lines = function(lines)
    assert.are.same(lines, vim.api.nvim_buf_get_lines(0, 0, -1, false))
end

describe("jumps", function()
    before_each(function()
        local bufnr = vim.api.nvim_create_buf(true, true)
        vim.api.nvim_win_set_buf(0, bufnr)
    end)

    it("can do lookahead/lookbehind", function()
        set_lines({
            [[And jump "forwards" and `backwards` to 'the' "nearest" surround.]],
        })
        set_curpos({ 1, 27 })

        vim.cmd("normal dsq")
        assert.are_not.same(get_curpos(), { 1, 27 })
        check_lines({
            [[And jump "forwards" and backwards to 'the' "nearest" surround.]],
        })

        vim.cmd("normal ysa'\"")
        check_lines({
            [[And jump "forwards" and backwards to "'the'" "nearest" surround.]],
        })

        vim.cmd("normal dsq")
        assert.are_not.same(get_curpos(), { 1, 27 })
        vim.cmd("normal! ..")
        assert.are_not.same(get_curpos(), { 1, 27 })
        check_lines({
            [[And jump "forwards and backwards to the nearest" surround.]],
        })

        vim.cmd("normal csqb")
        assert.are_not.same(get_curpos(), { 1, 27 })
        check_lines({
            [[And jump (forwards and backwards to the nearest) surround.]],
        })
    end)

    it("can change multiple quotes on a line", function()
        set_lines({
            [["hello "world""]],
        })
        set_curpos({ 1, 10 })
        vim.cmd("normal cs\"'")
        check_lines({
            [["hello 'world'"]],
        })
        set_curpos({ 1, 8 })
        vim.cmd("normal cs'\"")
        check_lines({
            [["hello "world""]],
        })
        set_curpos({ 1, 14 })
        vim.cmd("normal cs\"'")
        check_lines({
            [["hello "world'']],
        })
    end)

    it("for quotes only target the current line", function()
        set_lines({
            [[This 'line' has quotes]],
            [[While this does "not"]],
            [[This `one` does as well]],
        })
        set_curpos({ 2, 7 })
        vim.cmd("normal dsq")
        check_lines({
            [[This 'line' has quotes]],
            [[While this does not]],
            [[This `one` does as well]],
        })
        vim.cmd("normal! .")
        check_lines({
            [[This 'line' has quotes]],
            [[While this does not]],
            [[This `one` does as well]],
        })
        vim.cmd("normal cs'`")
        vim.cmd("normal cs`'")
        check_lines({
            [[This 'line' has quotes]],
            [[While this does not]],
            [[This `one` does as well]],
        })
    end)

    it("can jump to pattern-based surrounds", function()
        set_lines({
            [[int f(a, b, c)]],
        })
        vim.cmd("normal dsf")
        check_lines({
            [[int a, b, c]],
        })

        set_curpos({ 1, 1 })
        set_lines({
            [[// Some comment here]],
            [[string function(vector<int> v) {}]],
        })
        vim.cmd("normal dsf")
        set_lines({
            [[// Some comment here]],
            [[string function(vector<int> v) {}]],
        })

        set_lines({
            [[outer_func(inner_func(some, args)) -- Comment]],
        })
        set_curpos({ 1, 11 })
        vim.cmd("normal dsf")
        set_lines({
            [[inner_func(some, args) -- Comment]],
        })

        set_lines({
            [[outer_func(inner_func(some, args)) -- Comment]],
        })
        set_curpos({ 1, 12 })
        vim.cmd("normal dsf")
        set_lines({
            [[outer_func(some, args) -- Comment]],
        })

        set_lines({
            [[outer_func(inner_func(some, args)) -- Comment]],
        })
        set_curpos({ 1, 33 })
        vim.cmd("normal dsf")
        set_lines({
            [[outer_func(some, args) -- Comment]],
        })

        set_lines({
            [[outer_func(inner_func(some, args)) -- Comment]],
        })
        set_curpos({ 1, 34 })
        vim.cmd("normal dsf")
        set_lines({
            [[inner_func(some, args) -- Comment]],
        })

        set_lines({
            [[outer_func(inner_func(some, args)) -- Comment]],
        })
        set_curpos({ 1, 39 })
        vim.cmd("normal dsf")
        set_lines({
            [[inner_func(some, args) -- Comment]],
        })
    end)

    it("has intended behavior for single-character delimiter pairs", function()
        require("nvim-surround").buffer_setup({
            surrounds = {
                ["*"] = {
                    find = "%*.-%*",
                    delete = "^(.)().-(.)()$",
                    change = {
                        target = "^(.)().-(.)()$",
                    },
                },
            },
        })

        set_lines({ "*hello*world*" })
        vim.cmd("normal ds*")
        check_lines({ "helloworld*" })

        set_lines({ "*hello*world*" })
        set_curpos({ 1, 6 })
        vim.cmd("normal ds*")
        check_lines({ "helloworld*" })

        set_lines({ "*hello*world*" })
        set_curpos({ 1, 7 })
        vim.cmd("normal ds*")
        check_lines({ "*helloworld" })

        set_lines({ "*hello*world*end" })
        set_curpos({ 1, 15 })
        vim.cmd("normal ds*")
        check_lines({ "*helloworldend" })
    end)
end)