1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
" ============================================================================
" File: git_status.vim
" Description: plugin for NERD Tree that provides git status support
" Maintainer: Xuyuan Pang <xuyuanp at gmail dot com>
" Last Change: 4 Apr 2014
" License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
" ============================================================================
if exists('g:loaded_nerdtree_git_status')
finish
endif
let g:loaded_nerdtree_git_status = 1
if !exists('g:NERDTreeShowGitStatus')
let g:NERDTreeShowGitStatus = 1
endif
if g:NERDTreeShowGitStatus == 0
finish
endif
if !exists('g:NERDTreeMapNextHunk')
let g:NERDTreeMapNextHunk = ']c'
endif
if !exists('g:NERDTreeMapPrevHunk')
let g:NERDTreeMapPrevHunk = '[c'
endif
if !exists('g:NERDTreeUpdateOnWrite')
let g:NERDTreeUpdateOnWrite = 1
endif
if !exists('g:NERDTreeUpdateOnCursorHold')
let g:NERDTreeUpdateOnCursorHold = 1
endif
if !exists('g:NERDTreeShowIgnoredStatus')
let g:NERDTreeShowIgnoredStatus = 0
endif
if !exists('s:NERDTreeIndicatorMap')
let s:NERDTreeIndicatorMap = {
\ 'Modified' : '✹',
\ 'Staged' : '✚',
\ 'Untracked' : '✭',
\ 'Renamed' : '➜',
\ 'Unmerged' : '═',
\ 'Deleted' : '✖',
\ 'Dirty' : '✗',
\ 'Clean' : '✔︎',
\ 'Ignored' : '☒',
\ 'Unknown' : '?'
\ }
endif
function! NERDTreeGitStatusRefreshListener(event)
if !exists('b:NOT_A_GIT_REPOSITORY')
call g:NERDTreeGitStatusRefresh()
endif
let l:path = a:event.subject
let l:flag = g:NERDTreeGetGitStatusPrefix(l:path)
call l:path.flagSet.clearFlags('git')
if l:flag !=# ''
call l:path.flagSet.addFlag('git', l:flag)
endif
endfunction
" FUNCTION: g:NERDTreeGitStatusRefresh() {{{2
" refresh cached git status
function! g:NERDTreeGitStatusRefresh()
let b:NERDTreeCachedGitFileStatus = {}
let b:NERDTreeCachedGitDirtyDir = {}
let b:NOT_A_GIT_REPOSITORY = 1
let l:root = fnamemodify(b:NERDTree.root.path.str(), ':p:gs?\\?/?:S')
let l:gitcmd = 'git -c color.status=false -C ' . l:root . ' status -s'
if g:NERDTreeShowIgnoredStatus
let l:gitcmd = l:gitcmd . ' --ignored'
endif
if exists('g:NERDTreeGitStatusIgnoreSubmodules')
let l:gitcmd = l:gitcmd . ' --ignore-submodules'
if g:NERDTreeGitStatusIgnoreSubmodules ==# 'all' || g:NERDTreeGitStatusIgnoreSubmodules ==# 'dirty' || g:NERDTreeGitStatusIgnoreSubmodules ==# 'untracked'
let l:gitcmd = l:gitcmd . '=' . g:NERDTreeGitStatusIgnoreSubmodules
endif
endif
let l:statusesStr = system(l:gitcmd)
let l:statusesSplit = split(l:statusesStr, '\n')
if l:statusesSplit != [] && l:statusesSplit[0] =~# 'fatal:.*'
let l:statusesSplit = []
return
endif
let b:NOT_A_GIT_REPOSITORY = 0
for l:statusLine in l:statusesSplit
" cache git status of files
let l:pathStr = substitute(l:statusLine, '...', '', '')
let l:pathSplit = split(l:pathStr, ' -> ')
if len(l:pathSplit) == 2
call s:NERDTreeCacheDirtyDir(l:pathSplit[0])
let l:pathStr = l:pathSplit[1]
else
let l:pathStr = l:pathSplit[0]
endif
let l:pathStr = s:NERDTreeTrimDoubleQuotes(l:pathStr)
if l:pathStr =~# '\.\./.*'
continue
endif
let l:statusKey = s:NERDTreeGetFileGitStatusKey(l:statusLine[0], l:statusLine[1])
let b:NERDTreeCachedGitFileStatus[fnameescape(l:pathStr)] = l:statusKey
if l:statusKey == 'Ignored'
if isdirectory(l:pathStr)
let b:NERDTreeCachedGitDirtyDir[fnameescape(l:pathStr)] = l:statusKey
endif
else
call s:NERDTreeCacheDirtyDir(l:pathStr)
endif
endfor
endfunction
function! s:NERDTreeCacheDirtyDir(pathStr)
" cache dirty dir
let l:dirtyPath = s:NERDTreeTrimDoubleQuotes(a:pathStr)
if l:dirtyPath =~# '\.\./.*'
return
endif
let l:dirtyPath = substitute(l:dirtyPath, '/[^/]*$', '/', '')
while l:dirtyPath =~# '.\+/.*' && has_key(b:NERDTreeCachedGitDirtyDir, fnameescape(l:dirtyPath)) == 0
let b:NERDTreeCachedGitDirtyDir[fnameescape(l:dirtyPath)] = 'Dirty'
let l:dirtyPath = substitute(l:dirtyPath, '/[^/]*/$', '/', '')
endwhile
endfunction
function! s:NERDTreeTrimDoubleQuotes(pathStr)
let l:toReturn = substitute(a:pathStr, '^"', '', '')
let l:toReturn = substitute(l:toReturn, '"$', '', '')
return l:toReturn
endfunction
" FUNCTION: g:NERDTreeGetGitStatusPrefix(path) {{{2
" return the indicator of the path
" Args: path
let s:GitStatusCacheTimeExpiry = 2
let s:GitStatusCacheTime = 0
function! g:NERDTreeGetGitStatusPrefix(path)
if localtime() - s:GitStatusCacheTime > s:GitStatusCacheTimeExpiry
let s:GitStatusCacheTime = localtime()
call g:NERDTreeGitStatusRefresh()
endif
let l:pathStr = a:path.str()
let l:cwd = b:NERDTree.root.path.str() . a:path.Slash()
if nerdtree#runningWindows()
let l:pathStr = a:path.WinToUnixPath(l:pathStr)
let l:cwd = a:path.WinToUnixPath(l:cwd)
endif
let l:cwd = substitute(l:cwd, '\~', '\\~', 'g')
let l:pathStr = substitute(l:pathStr, l:cwd, '', '')
let l:statusKey = ''
if a:path.isDirectory
let l:statusKey = get(b:NERDTreeCachedGitDirtyDir, fnameescape(l:pathStr . '/'), '')
else
let l:statusKey = get(b:NERDTreeCachedGitFileStatus, fnameescape(l:pathStr), '')
endif
return s:NERDTreeGetIndicator(l:statusKey)
endfunction
" FUNCTION: s:NERDTreeGetCWDGitStatus() {{{2
" return the indicator of cwd
function! g:NERDTreeGetCWDGitStatus()
if b:NOT_A_GIT_REPOSITORY
return ''
elseif b:NERDTreeCachedGitDirtyDir == {} && b:NERDTreeCachedGitFileStatus == {}
return s:NERDTreeGetIndicator('Clean')
endif
return s:NERDTreeGetIndicator('Dirty')
endfunction
function! s:NERDTreeGetIndicator(statusKey)
if exists('g:NERDTreeIndicatorMapCustom')
let l:indicator = get(g:NERDTreeIndicatorMapCustom, a:statusKey, '')
if l:indicator !=# ''
return l:indicator
endif
endif
let l:indicator = get(s:NERDTreeIndicatorMap, a:statusKey, '')
if l:indicator !=# ''
return l:indicator
endif
return ''
endfunction
function! s:NERDTreeGetFileGitStatusKey(us, them)
if a:us ==# '?' && a:them ==# '?'
return 'Untracked'
elseif a:us ==# ' ' && a:them ==# 'M'
return 'Modified'
elseif a:us =~# '[MAC]'
return 'Staged'
elseif a:us ==# 'R'
return 'Renamed'
elseif a:us ==# 'U' || a:them ==# 'U' || a:us ==# 'A' && a:them ==# 'A' || a:us ==# 'D' && a:them ==# 'D'
return 'Unmerged'
elseif a:them ==# 'D'
return 'Deleted'
elseif a:us ==# '!'
return 'Ignored'
else
return 'Unknown'
endif
endfunction
" FUNCTION: s:jumpToNextHunk(node) {{{2
function! s:jumpToNextHunk(node)
let l:position = search('\[[^{RO}].*\]', '')
if l:position
call nerdtree#echo('Jump to next hunk ')
endif
endfunction
" FUNCTION: s:jumpToPrevHunk(node) {{{2
function! s:jumpToPrevHunk(node)
let l:position = search('\[[^{RO}].*\]', 'b')
if l:position
call nerdtree#echo('Jump to prev hunk ')
endif
endfunction
" Function: s:SID() {{{2
function s:SID()
if !exists('s:sid')
let s:sid = matchstr(expand('<sfile>'), '<SNR>\zs\d\+\ze_SID$')
endif
return s:sid
endfun
" FUNCTION: s:NERDTreeGitStatusKeyMapping {{{2
function! s:NERDTreeGitStatusKeyMapping()
let l:s = '<SNR>' . s:SID() . '_'
call NERDTreeAddKeyMap({
\ 'key': g:NERDTreeMapNextHunk,
\ 'scope': 'Node',
\ 'callback': l:s.'jumpToNextHunk',
\ 'quickhelpText': 'Jump to next git hunk' })
call NERDTreeAddKeyMap({
\ 'key': g:NERDTreeMapPrevHunk,
\ 'scope': 'Node',
\ 'callback': l:s.'jumpToPrevHunk',
\ 'quickhelpText': 'Jump to prev git hunk' })
endfunction
augroup nerdtreegitplugin
autocmd CursorHold * silent! call s:CursorHoldUpdate()
augroup END
" FUNCTION: s:CursorHoldUpdate() {{{2
function! s:CursorHoldUpdate()
if g:NERDTreeUpdateOnCursorHold != 1
return
endif
if !g:NERDTree.IsOpen()
return
endif
" Do not update when a special buffer is selected
if !empty(&l:buftype)
return
endif
let l:winnr = winnr()
let l:altwinnr = winnr('#')
call g:NERDTree.CursorToTreeWin()
call b:NERDTree.root.refreshFlags()
call NERDTreeRender()
exec l:altwinnr . 'wincmd w'
exec l:winnr . 'wincmd w'
endfunction
augroup nerdtreegitplugin
autocmd BufWritePost * call s:FileUpdate(expand('%:p'))
augroup END
" FUNCTION: s:FileUpdate(fname) {{{2
function! s:FileUpdate(fname)
if g:NERDTreeUpdateOnWrite != 1
return
endif
if !g:NERDTree.IsOpen()
return
endif
let l:winnr = winnr()
let l:altwinnr = winnr('#')
call g:NERDTree.CursorToTreeWin()
let l:node = b:NERDTree.root.findNode(g:NERDTreePath.New(a:fname))
if l:node == {}
return
endif
call l:node.refreshFlags()
let l:node = l:node.parent
while !empty(l:node)
call l:node.refreshDirFlags()
let l:node = l:node.parent
endwhile
call NERDTreeRender()
exec l:altwinnr . 'wincmd w'
exec l:winnr . 'wincmd w'
endfunction
augroup AddHighlighting
autocmd FileType nerdtree call s:AddHighlighting()
augroup END
function! s:AddHighlighting()
let l:synmap = {
\ 'NERDTreeGitStatusModified' : s:NERDTreeGetIndicator('Modified'),
\ 'NERDTreeGitStatusStaged' : s:NERDTreeGetIndicator('Staged'),
\ 'NERDTreeGitStatusUntracked' : s:NERDTreeGetIndicator('Untracked'),
\ 'NERDTreeGitStatusRenamed' : s:NERDTreeGetIndicator('Renamed'),
\ 'NERDTreeGitStatusIgnored' : s:NERDTreeGetIndicator('Ignored'),
\ 'NERDTreeGitStatusDirDirty' : s:NERDTreeGetIndicator('Dirty'),
\ 'NERDTreeGitStatusDirClean' : s:NERDTreeGetIndicator('Clean')
\ }
for l:name in keys(l:synmap)
exec 'syn match ' . l:name . ' #' . escape(l:synmap[l:name], '~') . '# containedin=NERDTreeFlags'
endfor
hi def link NERDTreeGitStatusModified Special
hi def link NERDTreeGitStatusStaged Function
hi def link NERDTreeGitStatusRenamed Title
hi def link NERDTreeGitStatusUnmerged Label
hi def link NERDTreeGitStatusUntracked Comment
hi def link NERDTreeGitStatusDirDirty Tag
hi def link NERDTreeGitStatusDirClean DiffAdd
" TODO: use diff color
hi def link NERDTreeGitStatusIgnored DiffAdd
endfunction
function! s:SetupListeners()
call g:NERDTreePathNotifier.AddListener('init', 'NERDTreeGitStatusRefreshListener')
call g:NERDTreePathNotifier.AddListener('refresh', 'NERDTreeGitStatusRefreshListener')
call g:NERDTreePathNotifier.AddListener('refreshFlags', 'NERDTreeGitStatusRefreshListener')
endfunction
if g:NERDTreeShowGitStatus && executable('git')
call s:NERDTreeGitStatusKeyMapping()
call s:SetupListeners()
endif
|