Skip to content

Commit

Permalink
1. уточнение 4945: в командной строке и в строках редактирования не р…
Browse files Browse the repository at this point in the history
…аботал CtrlEnd при отключённом автодополнении.
  • Loading branch information
zg0 committed May 1, 2017
1 parent a067b05 commit 4ae29d1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions far/changelog
@@ -1,3 +1,7 @@
zg 01.05.2017 16:49:59 +0200 - build 4947

1. уточнение 4945: в командной строке и в строках редактирования не работал CtrlEnd при отключённом автодополнении.

zg 01.05.2017 16:05:46 +0200 - build 4946

1. уточнение 4945: в редакторе не работал регистронезависимый поиск.
Expand Down
2 changes: 1 addition & 1 deletion far/history.cpp
Expand Up @@ -589,7 +589,7 @@ bool History::GetSimilar(string &strStr, int LastCmdPartLength, bool bAppend)
continue;
}

if (starts_with_icase(strName, make_string_view(strStr, Length)) && strStr != strName)
if (starts_with_icase(strName, make_string_view(strStr, 0, Length)) && strStr != strName)
{
if (bAppend)
strStr.append(strName, Length, string::npos);
Expand Down
2 changes: 1 addition & 1 deletion far/vbuild.m4
@@ -1 +1 @@
m4_define(BUILD,4946)m4_dnl
m4_define(BUILD,4947)m4_dnl

0 comments on commit 4ae29d1

Please sign in to comment.