Make the BOM indicator '[BOM]'

also, not-exists symbol has nothing to do with powerline fonts, so fix
that.
This commit is contained in:
Christian Brabandt
2016-02-05 18:19:53 +01:00
parent 89094025c0
commit fdb74f549d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -78,6 +78,6 @@ function! airline#parts#filetype()
endfunction
function! airline#parts#ffenc()
return printf('%s%s%s', &fenc, &l:bomb ? '[B]' : '', strlen(&ff) > 0 ? '['.&ff.']' : '')
return printf('%s%s%s', &fenc, &l:bomb ? '[BOM]' : '', strlen(&ff) > 0 ? '['.&ff.']' : '')
endfunction