| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Problem: Various code not fully tested.
Solution: Add a few more tests. (Yegappan Lakshmanan, closes #6049)
|
|
|
|
|
| |
Problem: MS-Windows: testing external commands can be improved.
Solution: Adjust tests, remove duplicate test. (closes #4928)
|
|
|
|
|
| |
Problem: MS-Windows: shell commands fail if &shell contains a space.
Solution: Use quotes instead of escaping. (closes #4920)
|
|
|
|
|
| |
Problem: MS-Windows: system() test fails.
Solution: Expect CR when using systemlist().
|
|
|
|
|
|
| |
Problem: MS-Windows: redirect in system() does not work.
Solution: Handle 'shellxescape' and 'shellxquote' better. (Yasuhiro
Matsumoto, closes #2054)
|
|
|
|
|
|
| |
Problem: Inconsistently using GetVimCommand() and v:progpath. (Daniel
Hahler)
Solution: Use GetVimCommand(). (closes #4806)
|
|
|
|
|
| |
Problem: More functions can be used as a method.
Solution: Add has_key(), split(), str2list(), etc.
|
|
|
|
|
| |
Problem: Test files still use function!.
Solution: Remove the exclamation mark. Fix overwriting a function.
|
|
|
|
|
|
| |
Problem: System test failing when using X11 forwarding.
Solution: Set $XAUTHORITY before changing $HOME. (closes #1812)
Also use a better check for the exit value.
|
|
|
|
|
| |
Problem: On MS-Windows the system() test skips a few parts.
Solution: Swap single and double quotes for the command.
|
|
|
|
|
| |
Problem: The system() test fails on MS-Windows.
Solution: Skip the test on MS-Windows.
|
|
|
|
|
|
|
| |
Problem: When in Ex mode and an error is caught by try-catch, Vim still
exits with a non-zero exit code.
Solution: Don't set ex_exitval when inside a try-catch. (partly by Christian
Brabandt)
|
|
|
|
|
| |
Problem: system() test fails on OS/X.
Solution: Deal with leading spaces.
|
|
|
|
|
| |
Problem: system() test fails on MS-Windows.
Solution: Deal when extra space and CR.
|
|
Problem: To pass buffer content to system() and systemlist() one has to
first create a string or list.
Solution: Allow passing a buffer number. (LemonBoy, closes #1240)
|