Skip to content

Commit

Permalink
remove useless substitute when 'file =~# "/$"'
Browse files Browse the repository at this point in the history
  • Loading branch information
skyblueee committed Nov 27, 2017
1 parent b89de09 commit 3485b2a
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions lib/nerdtree/ui.vim
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,6 @@ function! s:UI.getPath(ln)
"remove the tree parts and the leading space
let curFile = self._stripMarkup(line, 0)

let wasdir = 0
if curFile =~# '/$'
let wasdir = 1
let curFile = substitute(curFile, '/\?$', '/', "")
endif

let dir = ""
let lnum = a:ln
while lnum > 0
Expand Down Expand Up @@ -390,14 +384,7 @@ function! s:UI._stripMarkup(line, removeLeadingSpaces)
"strip off any generic flags
let line = substitute (line, '\[[^]]*\]', "","")

let wasdir = 0
if line =~# '/$'
let wasdir = 1
endif
let line = substitute (line,' -> .*',"","") " remove link to
if wasdir ==# 1
let line = substitute (line, '/\?$', '/', "")
endif

if a:removeLeadingSpaces
let line = substitute (line, '^ *', '', '')
Expand Down

0 comments on commit 3485b2a

Please sign in to comment.