Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
reference)
|
|
(closes #130)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The tests can be run only via CMake:
1. build with tests: cmake .. -DENABLE_TESTS=ON
2. make
3. ctest (or ctest -V for verbose output)
|
|
|
|
This is needed for automated tests, to exit with return code of tests.
|
|
|
|
|
|
|
|
|
|
screen/tmux
The same warning is displayed with command "/debug term".
|
|
|
|
|
|
buffer (closes #129)
|
|
|
|
channels) (closes #117)
|
|
Python 2.x (closes #125)
|
|
The regex itself is not evaluated any more (so parentheses are kept).
Before the fix:
>> abcd =~ (?-i)^abc
== [0]
>> (abcd) =~ \(abcd\)
== [0]
After the fix:
>> abcd =~ (?-i)^abc
== [1]
>> (abcd) =~ \(abcd\)
== [1]
|
|
|
|
|
|
|
|
core: update Japanese translations
|