vim-airline/autoload/airline
Grzegorz Milka 2af2bdb424 Display not exists symbol correctly in Git repos
This commit fixes a bug, where untracked files in Git repos did not get the not
exists symbol displayed. The fix works by replacing the previous check for
whether currently edited file is a directory or not with a check based on
`findfile`. More detailed explanation follows.

VCS extension to vim-airline checks whether currently edited file is untracked.
The previous `s:get_git_untracked` implementation, which was used for the
aforementioned purpose for Git repos, was buggy, because it did not return the
untracked symbol in most situations, i.e. the edited file is untracked, but it
was treated as if it wasn't.
The root cause was the second clause in boolean expression checking the output
of `git status`:

    if output[0:1] is# '??' && output[3:-2] is? a:file

It was added to make sure we are not checking a directory, but at this point in
the program `a:file` is an absolute path, while output of `git status` is a
relative path from the root of git repo. So the `is?` expression failed in most
situations.
2016-10-25 19:26:44 +02:00
..
extensions Display not exists symbol correctly in Git repos 2016-10-25 19:26:44 +02:00
themes Add 'scriptencoding utf-8' to all scripts 2016-09-24 08:16:30 +08:00
builder.vim do not skip empty sections for the tabline 2016-09-27 21:44:00 +02:00
debug.vim Add 'scriptencoding utf-8' to all scripts 2016-09-24 08:16:30 +08:00
extensions.vim Add support for ALE, the Async Linting Engine 2016-10-14 10:36:21 +02:00
highlighter.vim Add 'scriptencoding utf-8' to all scripts 2016-09-24 08:16:30 +08:00
init.vim Add support for ALE, the Async Linting Engine 2016-10-14 10:36:21 +02:00
msdos.vim Add 'scriptencoding utf-8' to all scripts 2016-09-24 08:16:30 +08:00
parts.vim Add 'scriptencoding utf-8' to all scripts 2016-09-24 08:16:30 +08:00
section.vim Add 'scriptencoding utf-8' to all scripts 2016-09-24 08:16:30 +08:00
themes.vim Add 'scriptencoding utf-8' to all scripts 2016-09-24 08:16:30 +08:00
util.vim init async global variables 2016-10-14 10:36:21 +02:00