From 5a6fb51bdb43f15eafdbe1078183f754b4fecdf6 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 11 Jun 2024 19:39:07 +1000 Subject: Tweak python block command test location and remove wall of text We do not typically go into lengthy explanation of the code in the support scripts. This would have a performance impact (as comments are not trimmed in advance) and feels out of place. --- test/indent/python/empty-start-of-file-indented/cmd | 1 + test/indent/python/empty-start-of-file-indented/in | 1 + test/indent/python/empty-start-of-file-indented/out | 2 ++ test/indent/python/empty-start-of-file-indented/rc | 3 +++ test/indent/python/empty-start-of-file/cmd | 1 + test/indent/python/empty-start-of-file/in | 1 + test/indent/python/empty-start-of-file/out | 2 ++ test/indent/python/empty-start-of-file/rc | 3 +++ test/indent/python/exit-block-indented/cmd | 1 + test/indent/python/exit-block-indented/in | 4 ++++ test/indent/python/exit-block-indented/out | 3 +++ test/indent/python/exit-block-indented/rc | 3 +++ test/indent/python/exit-block/cmd | 1 + test/indent/python/exit-block/in | 4 ++++ test/indent/python/exit-block/out | 3 +++ test/indent/python/exit-block/rc | 3 +++ test/indent/python/not-a-comment-indented/cmd | 1 + test/indent/python/not-a-comment-indented/in | 4 ++++ test/indent/python/not-a-comment-indented/out | 5 +++++ test/indent/python/not-a-comment-indented/rc | 3 +++ test/indent/python/not-a-comment/cmd | 1 + test/indent/python/not-a-comment/in | 4 ++++ test/indent/python/not-a-comment/out | 5 +++++ test/indent/python/not-a-comment/rc | 3 +++ test/indent/python/paragraph-break-indented/cmd | 1 + test/indent/python/paragraph-break-indented/in | 3 +++ test/indent/python/paragraph-break-indented/out | 4 ++++ test/indent/python/paragraph-break-indented/rc | 3 +++ test/indent/python/paragraph-break/cmd | 1 + test/indent/python/paragraph-break/in | 4 ++++ test/indent/python/paragraph-break/out | 5 +++++ test/indent/python/paragraph-break/rc | 3 +++ .../empty-start-of-file-indented/cmd | 1 - .../empty-start-of-file-indented/in | 1 - .../empty-start-of-file-indented/out | 2 -- .../empty-start-of-file-indented/rc | 3 --- .../5147-python-block-comment-paragraphs/empty-start-of-file/cmd | 1 - .../5147-python-block-comment-paragraphs/empty-start-of-file/in | 1 - .../5147-python-block-comment-paragraphs/empty-start-of-file/out | 2 -- .../5147-python-block-comment-paragraphs/empty-start-of-file/rc | 3 --- .../5147-python-block-comment-paragraphs/exit-block-indented/cmd | 1 - .../5147-python-block-comment-paragraphs/exit-block-indented/in | 4 ---- .../5147-python-block-comment-paragraphs/exit-block-indented/out | 3 --- .../5147-python-block-comment-paragraphs/exit-block-indented/rc | 3 --- test/regression/5147-python-block-comment-paragraphs/exit-block/cmd | 1 - test/regression/5147-python-block-comment-paragraphs/exit-block/in | 4 ---- test/regression/5147-python-block-comment-paragraphs/exit-block/out | 3 --- test/regression/5147-python-block-comment-paragraphs/exit-block/rc | 3 --- .../5147-python-block-comment-paragraphs/not-a-comment-indented/cmd | 1 - .../5147-python-block-comment-paragraphs/not-a-comment-indented/in | 4 ---- .../5147-python-block-comment-paragraphs/not-a-comment-indented/out | 5 ----- .../5147-python-block-comment-paragraphs/not-a-comment-indented/rc | 3 --- .../5147-python-block-comment-paragraphs/not-a-comment/cmd | 1 - .../regression/5147-python-block-comment-paragraphs/not-a-comment/in | 4 ---- .../5147-python-block-comment-paragraphs/not-a-comment/out | 5 ----- .../regression/5147-python-block-comment-paragraphs/not-a-comment/rc | 3 --- .../paragraph-break-indented/cmd | 1 - .../5147-python-block-comment-paragraphs/paragraph-break-indented/in | 3 --- .../paragraph-break-indented/out | 4 ---- .../5147-python-block-comment-paragraphs/paragraph-break-indented/rc | 3 --- .../5147-python-block-comment-paragraphs/paragraph-break/cmd | 1 - .../5147-python-block-comment-paragraphs/paragraph-break/in | 4 ---- .../5147-python-block-comment-paragraphs/paragraph-break/out | 5 ----- .../5147-python-block-comment-paragraphs/paragraph-break/rc | 3 --- 64 files changed, 86 insertions(+), 86 deletions(-) create mode 100644 test/indent/python/empty-start-of-file-indented/cmd create mode 100644 test/indent/python/empty-start-of-file-indented/in create mode 100644 test/indent/python/empty-start-of-file-indented/out create mode 100644 test/indent/python/empty-start-of-file-indented/rc create mode 100644 test/indent/python/empty-start-of-file/cmd create mode 100644 test/indent/python/empty-start-of-file/in create mode 100644 test/indent/python/empty-start-of-file/out create mode 100644 test/indent/python/empty-start-of-file/rc create mode 100644 test/indent/python/exit-block-indented/cmd create mode 100644 test/indent/python/exit-block-indented/in create mode 100644 test/indent/python/exit-block-indented/out create mode 100644 test/indent/python/exit-block-indented/rc create mode 100644 test/indent/python/exit-block/cmd create mode 100644 test/indent/python/exit-block/in create mode 100644 test/indent/python/exit-block/out create mode 100644 test/indent/python/exit-block/rc create mode 100644 test/indent/python/not-a-comment-indented/cmd create mode 100644 test/indent/python/not-a-comment-indented/in create mode 100644 test/indent/python/not-a-comment-indented/out create mode 100644 test/indent/python/not-a-comment-indented/rc create mode 100644 test/indent/python/not-a-comment/cmd create mode 100644 test/indent/python/not-a-comment/in create mode 100644 test/indent/python/not-a-comment/out create mode 100644 test/indent/python/not-a-comment/rc create mode 100644 test/indent/python/paragraph-break-indented/cmd create mode 100644 test/indent/python/paragraph-break-indented/in create mode 100644 test/indent/python/paragraph-break-indented/out create mode 100644 test/indent/python/paragraph-break-indented/rc create mode 100644 test/indent/python/paragraph-break/cmd create mode 100644 test/indent/python/paragraph-break/in create mode 100644 test/indent/python/paragraph-break/out create mode 100644 test/indent/python/paragraph-break/rc delete mode 100644 test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/cmd delete mode 100644 test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/in delete mode 100644 test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/out delete mode 100644 test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/rc delete mode 100644 test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/cmd delete mode 100644 test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/in delete mode 100644 test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/out delete mode 100644 test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/rc delete mode 100644 test/regression/5147-python-block-comment-paragraphs/exit-block-indented/cmd delete mode 100644 test/regression/5147-python-block-comment-paragraphs/exit-block-indented/in delete mode 100644 test/regression/5147-python-block-comment-paragraphs/exit-block-indented/out delete mode 100644 test/regression/5147-python-block-comment-paragraphs/exit-block-indented/rc delete mode 100644 test/regression/5147-python-block-comment-paragraphs/exit-block/cmd delete mode 100644 test/regression/5147-python-block-comment-paragraphs/exit-block/in delete mode 100644 test/regression/5147-python-block-comment-paragraphs/exit-block/out delete mode 100644 test/regression/5147-python-block-comment-paragraphs/exit-block/rc delete mode 100644 test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/cmd delete mode 100644 test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/in delete mode 100644 test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/out delete mode 100644 test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/rc delete mode 100644 test/regression/5147-python-block-comment-paragraphs/not-a-comment/cmd delete mode 100644 test/regression/5147-python-block-comment-paragraphs/not-a-comment/in delete mode 100644 test/regression/5147-python-block-comment-paragraphs/not-a-comment/out delete mode 100644 test/regression/5147-python-block-comment-paragraphs/not-a-comment/rc delete mode 100644 test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/cmd delete mode 100644 test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/in delete mode 100644 test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/out delete mode 100644 test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/rc delete mode 100644 test/regression/5147-python-block-comment-paragraphs/paragraph-break/cmd delete mode 100644 test/regression/5147-python-block-comment-paragraphs/paragraph-break/in delete mode 100644 test/regression/5147-python-block-comment-paragraphs/paragraph-break/out delete mode 100644 test/regression/5147-python-block-comment-paragraphs/paragraph-break/rc (limited to 'test') diff --git a/test/indent/python/empty-start-of-file-indented/cmd b/test/indent/python/empty-start-of-file-indented/cmd new file mode 100644 index 00000000..60ee9918 --- /dev/null +++ b/test/indent/python/empty-start-of-file-indented/cmd @@ -0,0 +1 @@ +gjA diff --git a/test/indent/python/empty-start-of-file-indented/in b/test/indent/python/empty-start-of-file-indented/in new file mode 100644 index 00000000..641ef36f --- /dev/null +++ b/test/indent/python/empty-start-of-file-indented/in @@ -0,0 +1 @@ + # diff --git a/test/indent/python/empty-start-of-file-indented/out b/test/indent/python/empty-start-of-file-indented/out new file mode 100644 index 00000000..fee7ebff --- /dev/null +++ b/test/indent/python/empty-start-of-file-indented/out @@ -0,0 +1,2 @@ + # + # diff --git a/test/indent/python/empty-start-of-file-indented/rc b/test/indent/python/empty-start-of-file-indented/rc new file mode 100644 index 00000000..a098fc21 --- /dev/null +++ b/test/indent/python/empty-start-of-file-indented/rc @@ -0,0 +1,3 @@ +source "%val{runtime}/colors/default.kak" +source "%val{runtime}/rc/filetype/python.kak" +set buffer filetype python diff --git a/test/indent/python/empty-start-of-file/cmd b/test/indent/python/empty-start-of-file/cmd new file mode 100644 index 00000000..60ee9918 --- /dev/null +++ b/test/indent/python/empty-start-of-file/cmd @@ -0,0 +1 @@ +gjA diff --git a/test/indent/python/empty-start-of-file/in b/test/indent/python/empty-start-of-file/in new file mode 100644 index 00000000..792d6005 --- /dev/null +++ b/test/indent/python/empty-start-of-file/in @@ -0,0 +1 @@ +# diff --git a/test/indent/python/empty-start-of-file/out b/test/indent/python/empty-start-of-file/out new file mode 100644 index 00000000..0f3b43f3 --- /dev/null +++ b/test/indent/python/empty-start-of-file/out @@ -0,0 +1,2 @@ +# +# diff --git a/test/indent/python/empty-start-of-file/rc b/test/indent/python/empty-start-of-file/rc new file mode 100644 index 00000000..a098fc21 --- /dev/null +++ b/test/indent/python/empty-start-of-file/rc @@ -0,0 +1,3 @@ +source "%val{runtime}/colors/default.kak" +source "%val{runtime}/rc/filetype/python.kak" +set buffer filetype python diff --git a/test/indent/python/exit-block-indented/cmd b/test/indent/python/exit-block-indented/cmd new file mode 100644 index 00000000..60ee9918 --- /dev/null +++ b/test/indent/python/exit-block-indented/cmd @@ -0,0 +1 @@ +gjA diff --git a/test/indent/python/exit-block-indented/in b/test/indent/python/exit-block-indented/in new file mode 100644 index 00000000..0092d9ec --- /dev/null +++ b/test/indent/python/exit-block-indented/in @@ -0,0 +1,4 @@ + # A new line after a pair of empty comment lines should exit the + # block comment. + # + # diff --git a/test/indent/python/exit-block-indented/out b/test/indent/python/exit-block-indented/out new file mode 100644 index 00000000..36283e91 --- /dev/null +++ b/test/indent/python/exit-block-indented/out @@ -0,0 +1,3 @@ + # A new line after a pair of empty comment lines should exit the + # block comment. + diff --git a/test/indent/python/exit-block-indented/rc b/test/indent/python/exit-block-indented/rc new file mode 100644 index 00000000..a098fc21 --- /dev/null +++ b/test/indent/python/exit-block-indented/rc @@ -0,0 +1,3 @@ +source "%val{runtime}/colors/default.kak" +source "%val{runtime}/rc/filetype/python.kak" +set buffer filetype python diff --git a/test/indent/python/exit-block/cmd b/test/indent/python/exit-block/cmd new file mode 100644 index 00000000..60ee9918 --- /dev/null +++ b/test/indent/python/exit-block/cmd @@ -0,0 +1 @@ +gjA diff --git a/test/indent/python/exit-block/in b/test/indent/python/exit-block/in new file mode 100644 index 00000000..582a11c7 --- /dev/null +++ b/test/indent/python/exit-block/in @@ -0,0 +1,4 @@ +# A new line after a pair of empty comment lines should exit the +# block comment. +# +# diff --git a/test/indent/python/exit-block/out b/test/indent/python/exit-block/out new file mode 100644 index 00000000..21bc5075 --- /dev/null +++ b/test/indent/python/exit-block/out @@ -0,0 +1,3 @@ +# A new line after a pair of empty comment lines should exit the +# block comment. + diff --git a/test/indent/python/exit-block/rc b/test/indent/python/exit-block/rc new file mode 100644 index 00000000..a098fc21 --- /dev/null +++ b/test/indent/python/exit-block/rc @@ -0,0 +1,3 @@ +source "%val{runtime}/colors/default.kak" +source "%val{runtime}/rc/filetype/python.kak" +set buffer filetype python diff --git a/test/indent/python/not-a-comment-indented/cmd b/test/indent/python/not-a-comment-indented/cmd new file mode 100644 index 00000000..60ee9918 --- /dev/null +++ b/test/indent/python/not-a-comment-indented/cmd @@ -0,0 +1 @@ +gjA diff --git a/test/indent/python/not-a-comment-indented/in b/test/indent/python/not-a-comment-indented/in new file mode 100644 index 00000000..f3c7955e --- /dev/null +++ b/test/indent/python/not-a-comment-indented/in @@ -0,0 +1,4 @@ + # If we're not in a comment at all, make sure we do the right thing. + # (one empty line and a 4-space prefixed line follows) + + diff --git a/test/indent/python/not-a-comment-indented/out b/test/indent/python/not-a-comment-indented/out new file mode 100644 index 00000000..9748afb0 --- /dev/null +++ b/test/indent/python/not-a-comment-indented/out @@ -0,0 +1,5 @@ + # If we're not in a comment at all, make sure we do the right thing. + # (one empty line and a 4-space prefixed line follows) + + + diff --git a/test/indent/python/not-a-comment-indented/rc b/test/indent/python/not-a-comment-indented/rc new file mode 100644 index 00000000..a098fc21 --- /dev/null +++ b/test/indent/python/not-a-comment-indented/rc @@ -0,0 +1,3 @@ +source "%val{runtime}/colors/default.kak" +source "%val{runtime}/rc/filetype/python.kak" +set buffer filetype python diff --git a/test/indent/python/not-a-comment/cmd b/test/indent/python/not-a-comment/cmd new file mode 100644 index 00000000..60ee9918 --- /dev/null +++ b/test/indent/python/not-a-comment/cmd @@ -0,0 +1 @@ +gjA diff --git a/test/indent/python/not-a-comment/in b/test/indent/python/not-a-comment/in new file mode 100644 index 00000000..bdfda4a1 --- /dev/null +++ b/test/indent/python/not-a-comment/in @@ -0,0 +1,4 @@ +# If we're not in a comment at all, make sure we do the right thing. +# (two empty lines follow) + + diff --git a/test/indent/python/not-a-comment/out b/test/indent/python/not-a-comment/out new file mode 100644 index 00000000..881aeaa0 --- /dev/null +++ b/test/indent/python/not-a-comment/out @@ -0,0 +1,5 @@ +# If we're not in a comment at all, make sure we do the right thing. +# (two empty lines follow) + + + diff --git a/test/indent/python/not-a-comment/rc b/test/indent/python/not-a-comment/rc new file mode 100644 index 00000000..a098fc21 --- /dev/null +++ b/test/indent/python/not-a-comment/rc @@ -0,0 +1,3 @@ +source "%val{runtime}/colors/default.kak" +source "%val{runtime}/rc/filetype/python.kak" +set buffer filetype python diff --git a/test/indent/python/paragraph-break-indented/cmd b/test/indent/python/paragraph-break-indented/cmd new file mode 100644 index 00000000..60ee9918 --- /dev/null +++ b/test/indent/python/paragraph-break-indented/cmd @@ -0,0 +1 @@ +gjA diff --git a/test/indent/python/paragraph-break-indented/in b/test/indent/python/paragraph-break-indented/in new file mode 100644 index 00000000..fb95ee15 --- /dev/null +++ b/test/indent/python/paragraph-break-indented/in @@ -0,0 +1,3 @@ + # A new line after a single empty comment line should leave the comment in + # place as a possible paragraph separator. + # diff --git a/test/indent/python/paragraph-break-indented/out b/test/indent/python/paragraph-break-indented/out new file mode 100644 index 00000000..31a0fc7e --- /dev/null +++ b/test/indent/python/paragraph-break-indented/out @@ -0,0 +1,4 @@ + # A new line after a single empty comment line should leave the comment in + # place as a possible paragraph separator. + # + # diff --git a/test/indent/python/paragraph-break-indented/rc b/test/indent/python/paragraph-break-indented/rc new file mode 100644 index 00000000..a098fc21 --- /dev/null +++ b/test/indent/python/paragraph-break-indented/rc @@ -0,0 +1,3 @@ +source "%val{runtime}/colors/default.kak" +source "%val{runtime}/rc/filetype/python.kak" +set buffer filetype python diff --git a/test/indent/python/paragraph-break/cmd b/test/indent/python/paragraph-break/cmd new file mode 100644 index 00000000..60ee9918 --- /dev/null +++ b/test/indent/python/paragraph-break/cmd @@ -0,0 +1 @@ +gjA diff --git a/test/indent/python/paragraph-break/in b/test/indent/python/paragraph-break/in new file mode 100644 index 00000000..c856556f --- /dev/null +++ b/test/indent/python/paragraph-break/in @@ -0,0 +1,4 @@ +# A new line after a single empty comment line should leave the empty comment +# in place as a possible paragraph separator, starting a new comment with the +# prefix copied. +# diff --git a/test/indent/python/paragraph-break/out b/test/indent/python/paragraph-break/out new file mode 100644 index 00000000..56da68fd --- /dev/null +++ b/test/indent/python/paragraph-break/out @@ -0,0 +1,5 @@ +# A new line after a single empty comment line should leave the empty comment +# in place as a possible paragraph separator, starting a new comment with the +# prefix copied. +# +# diff --git a/test/indent/python/paragraph-break/rc b/test/indent/python/paragraph-break/rc new file mode 100644 index 00000000..a098fc21 --- /dev/null +++ b/test/indent/python/paragraph-break/rc @@ -0,0 +1,3 @@ +source "%val{runtime}/colors/default.kak" +source "%val{runtime}/rc/filetype/python.kak" +set buffer filetype python diff --git a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/cmd b/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/cmd deleted file mode 100644 index 60ee9918..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/cmd +++ /dev/null @@ -1 +0,0 @@ -gjA diff --git a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/in b/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/in deleted file mode 100644 index 641ef36f..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/in +++ /dev/null @@ -1 +0,0 @@ - # diff --git a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/out b/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/out deleted file mode 100644 index fee7ebff..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/out +++ /dev/null @@ -1,2 +0,0 @@ - # - # diff --git a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/rc b/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/rc deleted file mode 100644 index a098fc21..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file-indented/rc +++ /dev/null @@ -1,3 +0,0 @@ -source "%val{runtime}/colors/default.kak" -source "%val{runtime}/rc/filetype/python.kak" -set buffer filetype python diff --git a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/cmd b/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/cmd deleted file mode 100644 index 60ee9918..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/cmd +++ /dev/null @@ -1 +0,0 @@ -gjA diff --git a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/in b/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/in deleted file mode 100644 index 792d6005..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/in +++ /dev/null @@ -1 +0,0 @@ -# diff --git a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/out b/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/out deleted file mode 100644 index 0f3b43f3..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/out +++ /dev/null @@ -1,2 +0,0 @@ -# -# diff --git a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/rc b/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/rc deleted file mode 100644 index a098fc21..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/empty-start-of-file/rc +++ /dev/null @@ -1,3 +0,0 @@ -source "%val{runtime}/colors/default.kak" -source "%val{runtime}/rc/filetype/python.kak" -set buffer filetype python diff --git a/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/cmd b/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/cmd deleted file mode 100644 index 60ee9918..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/cmd +++ /dev/null @@ -1 +0,0 @@ -gjA diff --git a/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/in b/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/in deleted file mode 100644 index 0092d9ec..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/in +++ /dev/null @@ -1,4 +0,0 @@ - # A new line after a pair of empty comment lines should exit the - # block comment. - # - # diff --git a/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/out b/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/out deleted file mode 100644 index 36283e91..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/out +++ /dev/null @@ -1,3 +0,0 @@ - # A new line after a pair of empty comment lines should exit the - # block comment. - diff --git a/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/rc b/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/rc deleted file mode 100644 index a098fc21..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/exit-block-indented/rc +++ /dev/null @@ -1,3 +0,0 @@ -source "%val{runtime}/colors/default.kak" -source "%val{runtime}/rc/filetype/python.kak" -set buffer filetype python diff --git a/test/regression/5147-python-block-comment-paragraphs/exit-block/cmd b/test/regression/5147-python-block-comment-paragraphs/exit-block/cmd deleted file mode 100644 index 60ee9918..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/exit-block/cmd +++ /dev/null @@ -1 +0,0 @@ -gjA diff --git a/test/regression/5147-python-block-comment-paragraphs/exit-block/in b/test/regression/5147-python-block-comment-paragraphs/exit-block/in deleted file mode 100644 index 582a11c7..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/exit-block/in +++ /dev/null @@ -1,4 +0,0 @@ -# A new line after a pair of empty comment lines should exit the -# block comment. -# -# diff --git a/test/regression/5147-python-block-comment-paragraphs/exit-block/out b/test/regression/5147-python-block-comment-paragraphs/exit-block/out deleted file mode 100644 index 21bc5075..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/exit-block/out +++ /dev/null @@ -1,3 +0,0 @@ -# A new line after a pair of empty comment lines should exit the -# block comment. - diff --git a/test/regression/5147-python-block-comment-paragraphs/exit-block/rc b/test/regression/5147-python-block-comment-paragraphs/exit-block/rc deleted file mode 100644 index a098fc21..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/exit-block/rc +++ /dev/null @@ -1,3 +0,0 @@ -source "%val{runtime}/colors/default.kak" -source "%val{runtime}/rc/filetype/python.kak" -set buffer filetype python diff --git a/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/cmd b/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/cmd deleted file mode 100644 index 60ee9918..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/cmd +++ /dev/null @@ -1 +0,0 @@ -gjA diff --git a/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/in b/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/in deleted file mode 100644 index f3c7955e..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/in +++ /dev/null @@ -1,4 +0,0 @@ - # If we're not in a comment at all, make sure we do the right thing. - # (one empty line and a 4-space prefixed line follows) - - diff --git a/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/out b/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/out deleted file mode 100644 index 9748afb0..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/out +++ /dev/null @@ -1,5 +0,0 @@ - # If we're not in a comment at all, make sure we do the right thing. - # (one empty line and a 4-space prefixed line follows) - - - diff --git a/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/rc b/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/rc deleted file mode 100644 index a098fc21..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/not-a-comment-indented/rc +++ /dev/null @@ -1,3 +0,0 @@ -source "%val{runtime}/colors/default.kak" -source "%val{runtime}/rc/filetype/python.kak" -set buffer filetype python diff --git a/test/regression/5147-python-block-comment-paragraphs/not-a-comment/cmd b/test/regression/5147-python-block-comment-paragraphs/not-a-comment/cmd deleted file mode 100644 index 60ee9918..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/not-a-comment/cmd +++ /dev/null @@ -1 +0,0 @@ -gjA diff --git a/test/regression/5147-python-block-comment-paragraphs/not-a-comment/in b/test/regression/5147-python-block-comment-paragraphs/not-a-comment/in deleted file mode 100644 index bdfda4a1..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/not-a-comment/in +++ /dev/null @@ -1,4 +0,0 @@ -# If we're not in a comment at all, make sure we do the right thing. -# (two empty lines follow) - - diff --git a/test/regression/5147-python-block-comment-paragraphs/not-a-comment/out b/test/regression/5147-python-block-comment-paragraphs/not-a-comment/out deleted file mode 100644 index 881aeaa0..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/not-a-comment/out +++ /dev/null @@ -1,5 +0,0 @@ -# If we're not in a comment at all, make sure we do the right thing. -# (two empty lines follow) - - - diff --git a/test/regression/5147-python-block-comment-paragraphs/not-a-comment/rc b/test/regression/5147-python-block-comment-paragraphs/not-a-comment/rc deleted file mode 100644 index a098fc21..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/not-a-comment/rc +++ /dev/null @@ -1,3 +0,0 @@ -source "%val{runtime}/colors/default.kak" -source "%val{runtime}/rc/filetype/python.kak" -set buffer filetype python diff --git a/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/cmd b/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/cmd deleted file mode 100644 index 60ee9918..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/cmd +++ /dev/null @@ -1 +0,0 @@ -gjA diff --git a/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/in b/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/in deleted file mode 100644 index fb95ee15..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/in +++ /dev/null @@ -1,3 +0,0 @@ - # A new line after a single empty comment line should leave the comment in - # place as a possible paragraph separator. - # diff --git a/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/out b/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/out deleted file mode 100644 index 31a0fc7e..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/out +++ /dev/null @@ -1,4 +0,0 @@ - # A new line after a single empty comment line should leave the comment in - # place as a possible paragraph separator. - # - # diff --git a/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/rc b/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/rc deleted file mode 100644 index a098fc21..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/paragraph-break-indented/rc +++ /dev/null @@ -1,3 +0,0 @@ -source "%val{runtime}/colors/default.kak" -source "%val{runtime}/rc/filetype/python.kak" -set buffer filetype python diff --git a/test/regression/5147-python-block-comment-paragraphs/paragraph-break/cmd b/test/regression/5147-python-block-comment-paragraphs/paragraph-break/cmd deleted file mode 100644 index 60ee9918..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/paragraph-break/cmd +++ /dev/null @@ -1 +0,0 @@ -gjA diff --git a/test/regression/5147-python-block-comment-paragraphs/paragraph-break/in b/test/regression/5147-python-block-comment-paragraphs/paragraph-break/in deleted file mode 100644 index c856556f..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/paragraph-break/in +++ /dev/null @@ -1,4 +0,0 @@ -# A new line after a single empty comment line should leave the empty comment -# in place as a possible paragraph separator, starting a new comment with the -# prefix copied. -# diff --git a/test/regression/5147-python-block-comment-paragraphs/paragraph-break/out b/test/regression/5147-python-block-comment-paragraphs/paragraph-break/out deleted file mode 100644 index 56da68fd..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/paragraph-break/out +++ /dev/null @@ -1,5 +0,0 @@ -# A new line after a single empty comment line should leave the empty comment -# in place as a possible paragraph separator, starting a new comment with the -# prefix copied. -# -# diff --git a/test/regression/5147-python-block-comment-paragraphs/paragraph-break/rc b/test/regression/5147-python-block-comment-paragraphs/paragraph-break/rc deleted file mode 100644 index a098fc21..00000000 --- a/test/regression/5147-python-block-comment-paragraphs/paragraph-break/rc +++ /dev/null @@ -1,3 +0,0 @@ -source "%val{runtime}/colors/default.kak" -source "%val{runtime}/rc/filetype/python.kak" -set buffer filetype python -- cgit v1.2.3