Removed directory separator from sort key (#1219)

* Removed directory separator from sort key

Directories had an additional separator appended to them which caused improper comparisons for other directories that shared similar prefixes.

* Updated changelog
This commit is contained in:
Daniel E
2021-02-09 18:48:36 -07:00
committed by GitHub
parent 1b19089917
commit d3becd1149
2 changed files with 2 additions and 1 deletions

View File

@@ -394,7 +394,7 @@ function! s:Path.getSortKey()
let self._sortKey = [self.getSortOrderIndex()] + metadata
endif
let path = self.getLastPathComponent(1)
let path = self.getLastPathComponent(0)
if !g:NERDTreeSortHiddenFirst
let path = substitute(path, '^[._]', '', '')
endif