Support the vim behaviour for +line syntax

* Ommitting the linenumber will move to buffer end
This commit is contained in:
Eike Plack 2017-01-31 19:44:27 +01:00
parent 34870eb353
commit 01eceebf75

View File

@ -819,6 +819,11 @@ int main(int argc, char* argv[])
{
if (not name.empty() and name[0_byte] == '+')
{
if (name == "+" or name == "+:")
{
init_cmds = init_cmds + "; exec gj";
continue;
}
auto colon = find(name, ':');
if (auto line = str_to_int_ifp({name.begin()+1, colon}))
{