parent
d68c9bbeb2
commit
fa5910eb14
|
@ -3,6 +3,9 @@
|
|||
This is the Changelog for the vim-airline project.
|
||||
|
||||
## [Unreleased]
|
||||
- New features
|
||||
- Extensions:
|
||||
- [Defx](https://github.com/Shougo/defx.nvim) support
|
||||
|
||||
## [0.10] - 2018-12-15
|
||||
- New features
|
||||
|
|
|
@ -217,6 +217,10 @@ function! airline#extensions#load()
|
|||
let s:filetype_regex_overrides['^int-'] = ['vimshell','%{substitute(&ft, "int-", "", "")}']
|
||||
endif
|
||||
|
||||
if exists(':Defx')
|
||||
let s:filetype_overrides['defx'] = ['defx', '%{b:defx.paths[0]}']
|
||||
endif
|
||||
|
||||
if get(g:, 'airline#extensions#branch#enabled', 1) && (
|
||||
\ airline#util#has_fugitive() ||
|
||||
\ airline#util#has_lawrencium() ||
|
||||
|
|
Loading…
Reference in New Issue