xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 80b10d71ed4b3b72ba58815d2efe6ec03d6ff6de

Test unterminated escape like "bla\
Author: xaizek
Author date (UTC): 2025-07-05 17:59
Committer name: xaizek
Committer date (UTC): 2025-07-06 09:38
Parent(s): 20e8f60d18995009f39d491ba3cf5faa993b8c3c
Signing key: 99DC5E4DB05F6BE2
Tree: 9fdcfefd9b841762308e200d9edcfe824ffc5d35
File Lines added Lines deleted
tests/parsing/double_quotes.c 5 0
File tests/parsing/double_quotes.c changed (mode: 100644) (index beaeca832..a533a9685)
... ... TEST(concatenation)
35 35 ASSERT_OK("\"NV\" . \"AR\"", "NVAR"); ASSERT_OK("\"NV\" . \"AR\"", "NVAR");
36 36 } }
37 37
38 TEST(unterminated_escaping)
39 {
40 ASSERT_FAIL("\"\\", PE_INVALID_EXPRESSION);
41 }
42
38 43 TEST(double_quote_escaping_ok) TEST(double_quote_escaping_ok)
39 44 { {
40 45 ASSERT_OK("\"\\\"\"", "\""); ASSERT_OK("\"\\\"\"", "\"");
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master