Skip to content

Commit 2fa4a15

Browse files
committed
add a test
1 parent 8dd7b97 commit 2fa4a15

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

tests/plenary/org/indent_spec.lua

+17
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,19 @@ local function test_add_line_breaks_to_existing_file()
237237
expect_whole_buffer(expected)
238238
end
239239

240+
local function test_insertion_from_normal_mode()
241+
helpers.create_file({ '- first item' })
242+
vim.cmd([[normal! o]])
243+
local user_input = vim.api.nvim_replace_termcodes('i- second item<Esc>ocontent', true, true, true)
244+
vim.api.nvim_feedkeys(user_input, 'ntix', false)
245+
local expected = {
246+
'- first item',
247+
'- second item',
248+
' content',
249+
}
250+
expect_whole_buffer(expected)
251+
end
252+
240253
-- The actual tests are here.
241254

242255
describe('with "indent",', function()
@@ -259,6 +272,10 @@ describe('with "indent",', function()
259272
it('adding line breaks to list items maintains indent', function()
260273
test_add_line_breaks_to_existing_file()
261274
end)
275+
276+
it('inserting content from nomral mode is well indented', function()
277+
test_insertion_from_normal_mode()
278+
end)
262279
end)
263280

264281
describe('with "noindent",', function()

0 commit comments

Comments
 (0)