|
1 | 1 | local cr = vim.api.nvim_replace_termcodes("<CR>", true, false, true)
|
2 | 2 | local esc = vim.api.nvim_replace_termcodes("<Esc>", true, false, true)
|
| 3 | +local ctrl_v = vim.api.nvim_replace_termcodes("<C-v>", true, false, true) |
3 | 4 | local get_curpos = function()
|
4 | 5 | local curpos = vim.api.nvim_win_get_cursor(0)
|
5 | 6 | return { curpos[1], curpos[2] + 1 }
|
@@ -325,6 +326,86 @@ describe("configuration", function()
|
325 | 326 | check_curpos({ 1, 2 })
|
326 | 327 | end)
|
327 | 328 |
|
| 329 | + it("can make the cursor 'stick' to the text (visual)", function() |
| 330 | + require("nvim-surround").buffer_setup({ |
| 331 | + move_cursor = "sticky", |
| 332 | + }) |
| 333 | + |
| 334 | + set_lines({ |
| 335 | + "this is a line", |
| 336 | + }) |
| 337 | + set_curpos({ 1, 9 }) |
| 338 | + vim.cmd("normal vllS'") |
| 339 | + check_curpos({ 1, 12 }) |
| 340 | + |
| 341 | + set_lines({ |
| 342 | + "this is a line", |
| 343 | + "with some more text", |
| 344 | + }) |
| 345 | + set_curpos({ 1, 6 }) |
| 346 | + vim.cmd("normal vjeSb") |
| 347 | + check_curpos({ 2, 9 }) |
| 348 | + |
| 349 | + set_lines({ |
| 350 | + "this is a line", |
| 351 | + "with some more text", |
| 352 | + }) |
| 353 | + set_curpos({ 1, 6 }) |
| 354 | + vim.cmd("normal vjeoSb") |
| 355 | + check_curpos({ 1, 7 }) |
| 356 | + end) |
| 357 | + |
| 358 | + it("can make the cursor 'stick' to the text (visual line)", function() |
| 359 | + require("nvim-surround").buffer_setup({ |
| 360 | + move_cursor = "sticky", |
| 361 | + }) |
| 362 | + |
| 363 | + set_lines({ |
| 364 | + "this is a line", |
| 365 | + }) |
| 366 | + set_curpos({ 1, 9 }) |
| 367 | + vim.cmd("normal VSb") |
| 368 | + check_curpos({ 2, 9 }) |
| 369 | + |
| 370 | + set_lines({ |
| 371 | + "this is a line", |
| 372 | + "with some more text", |
| 373 | + }) |
| 374 | + set_curpos({ 1, 6 }) |
| 375 | + vim.cmd("normal VjStdiv" .. cr) |
| 376 | + check_curpos({ 3, 6 }) |
| 377 | + end) |
| 378 | + |
| 379 | + it("can make the cursor 'stick' to the text (visual block)", function() |
| 380 | + require("nvim-surround").buffer_setup({ |
| 381 | + move_cursor = "sticky", |
| 382 | + surrounds = { |
| 383 | + ["x"] = { |
| 384 | + add = { { "|", "" }, { "", "|" } }, |
| 385 | + }, |
| 386 | + }, |
| 387 | + }) |
| 388 | + |
| 389 | + set_lines({ |
| 390 | + "this is a line", |
| 391 | + "this is another line", |
| 392 | + }) |
| 393 | + set_curpos({ 1, 5 }) |
| 394 | + vim.cmd("normal! " .. ctrl_v .. "jf ") |
| 395 | + vim.cmd("normal Sb") |
| 396 | + check_curpos({ 2, 9 }) |
| 397 | + |
| 398 | + set_lines({ |
| 399 | + "this is a line", |
| 400 | + "this is another line", |
| 401 | + "some more random text", |
| 402 | + }) |
| 403 | + set_curpos({ 1, 4 }) |
| 404 | + vim.cmd("normal! " .. ctrl_v .. "jjww") |
| 405 | + vim.cmd("normal Sx") |
| 406 | + set_curpos({ 8, 8 }) |
| 407 | + end) |
| 408 | + |
328 | 409 | it("can make the cursor 'stick' to the text (delete)", function()
|
329 | 410 | require("nvim-surround").buffer_setup({
|
330 | 411 | move_cursor = "sticky",
|
|
0 commit comments