forked from ljli1990/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwinfileexplorer.vim
More file actions
1490 lines (1328 loc) · 38.4 KB
/
Copy pathwinfileexplorer.vim
File metadata and controls
1490 lines (1328 loc) · 38.4 KB
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"=============================================================================
" File: explorer.vim
" Author: M A Aziz Ahmed (aziz@acorn-networks.com)
" Last Change: Sun Mar 31 11:00 PM 2002 PST
" Version: 2.5
" Additions by Mark Waggoner (waggoner@aracnet.com) et al.
"-----------------------------------------------------------------------------
" This file implements a file explorer. Latest version available at:
" http://www.freespeech.org/aziz/vim/
" Updated version available at:
" http://www.aracnet.com/~waggoner
"-----------------------------------------------------------------------------
" Normally, this file will reside in the plugins directory and be
" automatically sourced. If not, you must manually source this file
" using :source explorer.vim
"
" To use it, just edit a directory (vi dirname) or type :Explore to
" launch the file explorer in the current window, or :Sexplore to split
" the current window and launch explorer there.
"
" If the current buffer is modified, the window is always split.
"
" It is also possible to delete files and rename files within explorer.
" See :help file-explorer for more details
"
"-----------------------------------------------------------------------------
" Update history removed, it's not very interesting.
" Contributors were: Doug Potts, Bram Moolenaar, Thomas Köhler
"
" This is a modified version to be compatible with winmanager.vim.
" Changes by Srinath Avadhanula
"=============================================================================
" Has this already been loaded?
if exists("loaded_winfileexplorer")
finish
endif
let loaded_winfileexplorer=1
" Line continuation used here
let s:cpo_save = &cpo
set cpo&vim
"---
" Default settings for global configuration variables
" Split vertically instead of horizontally?
if !exists("g:explVertical")
let g:explVertical=0
endif
" How big to make the window? Set to "" to avoid resizing
if !exists("g:explWinSize")
let g:explWinSize=15
endif
" When opening a new file/directory, split below current window (or
" above)? 1 = below, 0 = to above
if !exists("g:explSplitBelow")
let g:explSplitBelow = &splitbelow
endif
" Split to right of current window (or to left)?
" 1 = to right, 0 = to left
if !exists("g:explSplitRight")
let g:explSplitRight = &splitright
endif
" Start the first explorer window...
" Defaults to be the same as explSplitBelow
if !exists("g:explStartBelow")
let g:explStartBelow = g:explSplitBelow
endif
" Start the first explorer window...
" Defaults to be the same as explSplitRight
if !exists("g:explStartRight")
let g:explStartRight = g:explSplitRight
endif
" Show detailed help?
if !exists("g:explDetailedHelp")
let g:explDetailedHelp=0
endif
" Show file size and dates?
if !exists("g:explDetailedList")
let g:explDetailedList=0
endif
" Format for the date
if !exists("g:explDateFormat")
let g:explDateFormat="%d %b %Y %H:%M"
endif
" Files to hide
if !exists("g:explHideFiles")
let g:explHideFiles=''
endif
" Field to sort by
if !exists("g:explSortBy")
let g:explSortBy='name'
endif
" Segregate directories? 1, 0, or -1
if !exists("g:explDirsFirst")
let g:explDirsFirst=1
endif
" Segregate items in suffixes option? 1, 0, or -1
if !exists("g:explSuffixesLast")
let g:explSuffixesLast=1
endif
" Include separator lines between directories, files, and suffixes?
if !exists("g:explUseSeparators")
let g:explUseSeparators=0
endif
" whether or not to take over the functioning of the default file-explorer
" plugin
if !exists("g:defaultExplorer")
let g:defaultExplorer = 1
end
if !exists('g:favDirs')
if exists('$HOME')
let s:favDirs = expand('$HOME').'/'
end
else
if exists('$HOME')
let s:favDirs = g:favDirs."\/\n".expand('$HOME')
end
end
let s:favDirs = substitute(s:favDirs, '\', '/', 'g')
let s:favDirs = substitute(s:favDirs, '\/\/', '\/', 'g')
" -- stuff used by winmanager
let g:FileExplorer_title = "[File List]"
function! FileExplorer_Start()
let b:displayMode = "winmanager"
if exists('s:lastDirectoryDisplayed')
call s:EditDir(s:lastDirectoryDisplayed)
else
call s:EditDir(expand("%:p:h"))
end
if exists('s:lastCursorRow')
exe s:lastCursorRow
exe 'normal! '.s:lastCursorColumn.'|'
end
endfunction
function! FileExplorer_IsValid()
return 1
endfunction
function! FileExplorer_WrapUp()
let s:lastCursorRow = line('.')
let s:lastCursorColumn = virtcol('.')
let s:lastDirectoryDisplayed = b:completePath
endfunction
" --- end winmanager specific stuff (for now)
"---
" script variables - these are the same across all
" explorer windows
" characters that must be escaped for a regular expression
let s:escregexp = '/*^$.~\'
" characters that must be escaped for filenames
if has("dos16") || has("dos32") || has("win16") || has("win32") || has("os2")
let s:escfilename = ' %#'
else
let s:escfilename = ' \%#'
endif
" A line to use for separating sections
let s:separator='"---------------------------------------------------'
"---
" Create commands
" commenting stuff for beta version release
" if !exists(':Explore')
" command -n=? -complete=dir Explore :call s:StartExplorer(0, '<a>')
" endif
" if !exists(':Sexplore')
" command -n=? -complete=dir Sexplore :call s:StartExplorer(1, '<a>')
" endif
"
"---
" Start the explorer using the preferences from the global variables
"
function! s:StartExplorer(split, start_dir)
let startcmd = "edit"
if a:start_dir != ""
let fname=a:start_dir
else
let fname = expand("%:p:h")
endif
if fname == ""
let fname = getcwd()
endif
" Create a variable to use if splitting vertically
let splitMode = ""
if g:explVertical == 1
let splitMode = "vertical"
endif
" Save the user's settings for splitbelow and splitright
let savesplitbelow = &splitbelow
let savesplitright = &splitright
if a:split || &modified
let startcmd = splitMode . " " . g:explWinSize . "new " . fname
let &splitbelow = g:explStartBelow
let &splitright = g:explStartRight
else
let startcmd = "edit " . fname
endif
silent execute startcmd
let &splitbelow = savesplitbelow
let &splitright = savesplitright
endfunction
"---
" This is the main entry for 'editing' a directory
"
function! s:EditDir(...)
" depending on the number of arguments, this function has either been called
" by winmanager or by doing "e dirname" or :Explore
if a:0 == 0
" Get out of here right away if this isn't a directory!
let name = expand("%")
if name == ""
let name = expand("%:p")
endif
elseif a:0 >= 1
let name = a:1
set modifiable
1,$d_
end
if a:0 >= 2
let forceReDisplay = a:2
else
let forceReDisplay = 0
end
if !isdirectory(name)
return
endif
" Turn off the swapfile, set the buffer type so that it won't get
" written, and so that it will get deleted when it gets hidden.
setlocal modifiable
setlocal noswapfile
setlocal buftype=nowrite
setlocal bufhidden=delete
" Don't wrap around long lines
setlocal nowrap
" Get the complete path to the directory to look at with a slash at
" the end
let b:completePath = s:Path(name)
let s:lastDirectoryDisplayed = b:completePath
" Save the directory we are currently in and chdir to the directory
" we are editing so that we can get a real path to the directory,
" eliminating things like ".."
let origdir= s:Path(getcwd())
exe "chdir" escape(b:completePath,s:escfilename)
let b:completePath = s:Path(getcwd())
exe "chdir" escape(origdir,s:escfilename)
" Add a slash at the end
if b:completePath !~ '/$'
let b:completePath = b:completePath . '/'
endif
" escape special characters for exec commands
let b:completePathEsc=escape(b:completePath,s:escfilename)
let b:parentDirEsc=substitute(b:completePathEsc, '/[^/]*/$', '/', 'g')
" Set filter for hiding files
let b:filterFormula=substitute(g:explHideFiles, '\([^\\]\),', '\1\\|', 'g')
if b:filterFormula != ''
let b:filtering="\nNot showing: " . b:filterFormula
else
let b:filtering=""
endif
" added to allow directory caching
" s:numFileBuffers is an array containing the names of the directories
" visited.
if !exists("s:numFileBuffers")
let s:numFileBuffers = 0
end
let i = 1
while i <= s:numFileBuffers
exec 'let diri = s:dir_'.i
if diri == b:completePath
" if we are on a previously displayed directory which is being redrawn
" forcibly, then skip the stage of pasting from memory ...
if !forceReDisplay
let oldRep=&report
let save_sc = &sc
set report=10000 nosc
1,$d _
exec 'put=s:FileList_'.i
0d
0
let b:maxFileLen = 0
/^"=/+1,$g/^/call s:MarkDirs()
call s:CleanUpHistory()
call s:PrintFavDirs()
0
/^"=/+1
call s:CleanUpHistory()
let &report=oldRep
let &sc = save_sc
end
" ... merely remember the variable number and break.
let s:currentFileNumberDisplayed = i
break
endif
let i = i+1
endwhile
" No need for any insertmode abbreviations, since we don't allow
" insertions anyway!
iabc <buffer>
" Long or short listing? Use the global variable the first time
" explorer is called, after that use the script variable as set by
" the interactive user.
if exists("s:longlist")
let w:longlist = s:longlist
else
let w:longlist = g:explDetailedList
endif
" Show keyboard shortcuts?
if exists("s:longhelp")
let w:longhelp = s:longhelp
else
let w:longhelp = g:explDetailedHelp
endif
" Set the sort based on the global variables the first time. If you
" later change the sort order, it will be retained in the s:sortby
" variable for the next time you open explorer
let w:sortdirection=1
let w:sortdirlabel = ""
let w:sorttype = ""
if exists("s:sortby")
let sortby=s:sortby
else
let sortby=g:explSortBy
endif
if sortby =~ "reverse"
let w:sortdirection=-1
let w:sortdirlabel = "reverse "
endif
if sortby =~ "date"
let w:sorttype = "date"
elseif sortby =~ "size"
let w:sorttype = "size"
else
let w:sorttype = "name"
endif
call s:SetSuffixesLast()
" Set up syntax highlighting
" Something wrong with the evaluation of the conditional though...
if has("syntax") && exists("g:syntax_on") && !has("syntax_items")
syn match browseSynopsis "^\"[ -].*"
syn match favoriteDirectory "^+ .*$"
syn match browseDirectory "[^\"+].*/ "
syn match browseDirectory "[^\"+].*/$"
syn match browseCurDir "^\"= .*$"
syn match browseSortBy "^\" Sorted by .*$" contains=browseSuffixInfo
syn match browseSuffixInfo "(.*)$" contained
syn match browseFilter "^\" Not Showing:.*$"
syn match browseFiletime "«\d\+$"
exec('syn match browseSuffixes "' . b:suffixesHighlight . '"')
"hi def link browseSynopsis PreProc
hi def link browseSynopsis Special
hi def link browseDirectory Directory
hi def link browseCurDir Statement
hi def link favoriteDirectory Type
hi def link browseSortBy String
hi def link browseSuffixInfo Type
hi def link browseFilter String
hi def link browseFiletime Ignore
hi def link browseSuffixes Type
endif
" Set up mappings for this buffer
let cpo_save = &cpo
set cpo&vim
if exists("b:displayMode") && b:displayMode == "winmanager"
" when called in winmanager mode, the argument movefirst assumes the role
" of whether or not to split a window.
nnoremap <buffer> <cr> :call <SID>EditEntry(0,"winmanager")<cr>
nnoremap <buffer> <tab> :call <SID>EditEntry(1,"winmanager")<cr>
nnoremap <buffer> - :call <SID>EditDir(b:parentDirEsc)<cr>
nnoremap <buffer> <2-leftmouse> :call <SID>EditEntry(0,"winmanager")<cr>
nnoremap <buffer> C :call <SID>EditDir(getcwd(),1)<cr>:call <SID>RestoreFileDisplay()<cr>
nnoremap <buffer> <F5> :call <SID>EditDir(b:completePath,1)<cr>:call <SID>RestoreFileDisplay()<cr>
nnoremap <buffer> <C-^> <Nop>
nnoremap <buffer> f :call <SID>AddToFavDir()<cr>
else
nnoremap <buffer> <cr> :call <SID>EditEntry("","edit")<cr>
nnoremap <buffer> - :exec ("silent e " . b:parentDirEsc)<cr>
nnoremap <buffer> o :call <SID>OpenEntry()<cr>
nnoremap <buffer> O :call <SID>OpenEntryPrevWindow()<cr>
nnoremap <buffer> <2-leftmouse> :call <SID>DoubleClick()<cr>
endif
nnoremap <buffer> p :call <SID>EditEntry("","pedit")<cr>
nnoremap <buffer> a :call <SID>ShowAllFiles()<cr>:call <SID>RestoreFileDisplay()<cr>
nnoremap <buffer> R :call <SID>RenameFile()<cr>
nnoremap <buffer> D :. call <SID>DeleteFile()<cr>:call <SID>RestoreFileDisplay()<cr>
vnoremap <buffer> D :call <SID>DeleteFile()<cr>:call <SID>RestoreFileDisplay()<cr>
nnoremap <buffer> i :call <SID>ToggleLongList()<cr>:call <SID>RestoreFileDisplay()<cr>
nnoremap <buffer> s :call <SID>SortSelect()<cr>:call <SID>RestoreFileDisplay()<cr>
nnoremap <buffer> r :call <SID>SortReverse()<cr>:call <SID>RestoreFileDisplay()<cr>
nnoremap <buffer> ? :call <SID>ToggleHelp()<cr>
nnoremap <buffer> a :call <SID>ShowAllFiles()<cr>:call <SID>RestoreFileDisplay()<cr>
nnoremap <buffer> R :call <SID>RenameFile()<cr>
nnoremap <buffer> c :exec "cd ".b:completePathEsc<cr>:pwd<cr>
let &cpo = cpo_save
" If directory is already loaded, don't open it again!
if line('$') > 1
setlocal nomodifiable
return
endif
" Show the files
call s:ShowDirectory()
call s:PrintFavDirs()
" prevent the buffer from being modified
setlocal nomodifiable
" remember the contents of this directory if its been displayed for the
" first time for fast redraw later. if we have reached here bcause of a
" forcible redraw, do not create a new s:dir_i variable.
if !forceReDisplay
let s:numFileBuffers = s:numFileBuffers + 1
let s:currentFileNumberDisplayed = s:numFileBuffers
exe 'let s:dir_'.s:currentFileNumberDisplayed.' = b:completePath'
end
0
/^"=/+1
call s:CleanUpHistory()
call s:RestoreFileDisplay()
endfunction
"---
" If this is the only window, open file in a new window
" Otherwise, open file in the most recently visited window
"
function! s:OpenEntryPrevWindow()
" Figure out if there are any other windows
let n = winnr()
wincmd p
" No other window? Then open a new one
if n == winnr()
call s:OpenEntry()
" Other windows exist
else
" Check if the previous buffer is modified - ask if they want to
" save!
let bufname = bufname(winbufnr(winnr()))
if &modified
let action=confirm("Save Changes in " . bufname . "?","&Yes\n&No\n&Cancel")
" Yes - try to save - if there is an error, cancel
if action == 1
let v:errmsg = ""
silent w
if v:errmsg != ""
echoerr "Unable to write buffer!"
wincmd p
return
endif
" No, abandon changes
elseif action == 2
set nomodified
echomsg "Warning, abandoning changes in " . bufname
" Cancel (or any other result), don't do the open
else
wincmd p
return
endif
endif
wincmd p
call s:EditEntry("wincmd p","edit")
endif
endfunction
"
" save the contents of the currently displayed file listing into the current
" s:dir_i variable
"
function! s:RestoreFileDisplay()
let oldRep=&report
let save_sc = &sc
set report=10000 nosc
let presLine = line('.')
let saverega = @a
normal! ggVG"ay
exec 'let s:FileList_'.s:currentFileNumberDisplayed.' = @a'
let @a = saverega
let &report=oldRep
let &sc = save_sc
exe presLine
endfunction
"---
" Open a file or directory in a new window.
" Use g:explSplitBelow and g:explSplitRight to decide where to put the
" split window, and resize the original explorer window if it is
" larger than g:explWinSize
"
function! s:OpenEntry()
" Are we on a line with a file name?
let l = getline(".")
if l =~ '^"'
return
endif
" Copy window settings to script settings
let s:sortby=w:sortdirlabel . w:sorttype
let s:longhelp = w:longhelp
let s:longlist = w:longlist
" Get the window number of the explorer window
let n = winnr()
" Save the user's settings for splitbelow and splitright
let savesplitbelow=&splitbelow
let savesplitright=&splitright
" Figure out how to do the split based on the user's preferences.
" We want to split to the (left,right,top,bottom) of the explorer
" window, but we want to extract the screen real-estate from the
" window next to the explorer if possible.
"
" 'there' will be set to a command to move from the split window
" back to the explorer window
"
" 'back' will be set to a command to move from the explorer window
" back to the newly split window
"
" 'right' and 'below' will be set to the settings needed for
" splitbelow and splitright IF the explorer is the only window.
"
if g:explVertical
if g:explSplitRight
let there="wincmd h"
let back ="wincmd l"
let right=1
let below=0
else
let there="wincmd l"
let back ="wincmd h"
let right=0
let below=0
endif
else
if g:explSplitBelow
let there="wincmd k"
let back ="wincmd j"
let right=0
let below=1
else
let there="wincmd j"
let back ="wincmd k"
let right=0
let below=0
endif
endif
" Get the file name
let fn=s:GetFullFileName()
" Attempt to go to adjacent window
exec(back)
" If no adjacent window, set splitright and splitbelow appropriately
if n == winnr()
let &splitright=right
let &splitbelow=below
else
" found adjacent window - invert split direction
let &splitright=!right
let &splitbelow=!below
endif
" Create a variable to use if splitting vertically
let splitMode = ""
if g:explVertical == 1
let splitMode = "vertical"
endif
" Is it a directory? If so, get a real path to it instead of
" relative path
if isdirectory(fn)
let origdir= s:Path(getcwd())
exe "chdir" escape(fn,s:escfilename)
let fn = s:Path(getcwd())
exe "chdir" escape(origdir,s:escfilename)
endif
" Open the new window
exec("silent " . splitMode." sp " . escape(fn,s:escfilename))
" resize the explorer window if it is larger than the requested size
exec(there)
if g:explWinSize =~ '[0-9]\+' && winheight("") > g:explWinSize
exec("silent ".splitMode." resize ".g:explWinSize)
endif
exec(back)
" Restore splitmode settings
let &splitbelow=savesplitbelow
let &splitright=savesplitright
endfunction
"---
" Double click with the mouse
"
function s:DoubleClick()
if expand("<cfile>") =~ '[\\/]$'
call s:EditEntry("","edit") " directory: open in this window
else
call s:OpenEntryPrevWindow() " file: open in another window
endif
endfun
"---
" Open file or directory in the same window as the explorer is
" currently in
"
function! s:EditEntry(movefirst,editcmd)
" Are we on a line with a file name?
let l = getline(".")
if l =~ '^"'
return
endif
" Copy window settings to script settings
let s:sortby=w:sortdirlabel . w:sorttype
let s:longhelp = w:longhelp
let s:longlist = w:longlist
" Get the file name
let fn=s:GetFullFileName()
if isdirectory(fn)
let origdir= s:Path(getcwd())
exe "chdir" escape(fn,s:escfilename)
let fn = s:Path(getcwd())
exe "chdir" escape(origdir,s:escfilename)
endif
" if its the original explorer using this function, then proceed as before.
if !(exists("b:displayMode") && b:displayMode == "winmanager")
" Move to desired window if needed
exec(a:movefirst)
" Edit the file/dir
exec(a:editcmd . " " . escape(fn,s:escfilename))
" otherwise if its winmanager which called it, then do things the winmanager
" way, i.e, open directories in the same buffer and open files in the last
" visited file editing area (splitting if necessary)
else
if isdirectory(fn)
" callinng EditDir ensures that things are displayed in the same buffer.
call s:EditDir(fn)
else
" this function is provided by winmanager. it takes focus to the last
" visited buffer in the file editing area and then opens the new file in
" its place, while taking into consideration whether that buffer was
" modified, or whether the user wants to force a split each time, etc.
call WinManagerFileEdit(fn, a:movefirst)
end
end
endfunction
"---
" Create a regular expression out of the suffixes option for sorting
" and set a string to indicate whether we are sorting with the
" suffixes at the end (or the beginning)
"
function! s:SetSuffixesLast()
let b:suffixesRegexp = '\(' . substitute(escape(&suffixes,s:escregexp),',','\\|','g') . '\)$'
let b:suffixesHighlight = '^[^"].*\(' . substitute(escape(&suffixes,s:escregexp),',','\\|','g') . '\)\( \|$\)'
if has("fname_case")
let b:suffixesRegexp = '\C' . b:suffixesRegexp
let b:suffixesHighlight = '\C' . b:suffixesHighlight
else
let b:suffixesRegexp = '\c' . b:suffixesRegexp
let b:suffixesHighlight = '\c' . b:suffixesHighlight
endif
if g:explSuffixesLast > 0 && &suffixes != ""
let b:suffixeslast=" (" . &suffixes . " at end of list)"
elseif g:explSuffixesLast < 0 && &suffixes != ""
let b:suffixeslast=" (" . &suffixes . " at start of list)"
else
let b:suffixeslast=" ('suffixes' mixed with files)"
endif
endfunction
"---
" Show the header and contents of the directory
"
function! s:ShowDirectory()
" Prevent a report of our actions from showing up
let oldRep=&report
let save_sc = &sc
set report=10000 nosc
"Delete all lines
1,$d _
" Add the header
call s:AddHeader()
$d _
" Display the files
" Get a list of all the files
let files = s:Path(glob(b:completePath."*"))
if files != "" && files !~ '\n$'
let files = files . "\n"
endif
" Add the dot files now, making sure "." is not included!
let files = files . substitute(s:Path(glob(b:completePath.".*")), "[^\n]*/./\\=\n", '' , '')
if files != "" && files !~ '\n$'
let files = files . "\n"
endif
" Are there any files left after filtering?
if files != ""
normal! mt
put =files
let b:maxFileLen = 0
0
/^"=/+1,$g/^/call s:MarkDirs()
call s:CleanUpHistory()
normal! `t
call s:AddFileInfo()
endif
normal! zz
" Move to first directory in the listing
0
/^"=/+1
call s:CleanUpHistory()
" Do the sort
call s:SortListing("Loaded contents of ".b:completePath.". ")
" Move to first directory in the listing
0
/^"=/+1
call s:CleanUpHistory()
let &report=oldRep
let &sc = save_sc
endfunction
function! s:AddToFavDir()
if s:favDirs !~ "\\(^\\|\n\\)".b:completePath."\\(\n\\|$\\)"
let s:favDirs = s:favDirs."\n".b:completePath
else
return
endif
let pos = (line('.')+1).' | normal! '.virtcol('.').'|'
call s:PrintFavDirs()
exe pos
endfunction
"---
" Mark which items are directories - called once for each file name
" must be used only when size/date is not displayed
"
function! s:MarkDirs()
let oldRep=&report
set report=1000
"Remove slashes if added
s;/$;;e
"Removes all the leading slashes and adds slashes at the end of directories
s;^.*\\\([^\\]*\)$;\1;e
s;^.*/\([^/]*\)$;\1;e
"normal! ^
let currLine=getline(".")
if isdirectory(b:completePath . currLine)
s;$;/;
let fileLen=strlen(currLine)+1
else
let fileLen=strlen(currLine)
if (b:filterFormula!="") && (currLine =~ b:filterFormula)
" Don't show the file if it is to be filtered.
d _
endif
endif
if fileLen > b:maxFileLen
let b:maxFileLen=fileLen
endif
let &report=oldRep
endfunction
"---
" Make sure a path has proper form
"
function! s:Path(p)
if has("dos16") || has("dos32") || has("win16") || has("win32") || has("os2")
return substitute(a:p,'\\','/','g')
else
return a:p
endif
endfunction
"---
" Extract the file name from a line in several different forms
"
function! s:GetFullFileNameEsc()
return s:EscapeFilename(s:GetFullFileName())
endfunction
function! s:GetFileNameEsc()
return s:EscapeFilename(s:GetFileName())
endfunction
function! s:EscapeFilename(name)
return escape(a:name,s:escfilename)
endfunction
function! s:GetFullFileName()
if getline('.') =~ '+ '
if match(getline('.'), '(.*)') > 0
return matchstr(getline('.'), '(\zs.*\ze)')
else
return strpart(getline('.'), 2, 1000)
endif
endif
return s:ExtractFullFileName(getline("."))
endfunction
function! s:GetFileName()
return s:ExtractFileName(getline("."))
endfunction
function! s:ExtractFullFileName(line)
let fn=s:ExtractFileName(a:line)
if fn == '/'
return b:completePath
else
return b:completePath . s:ExtractFileName(a:line)
endif
endfunction
function! s:ExtractFileName(line)
return substitute(strpart(a:line,0,b:maxFileLen),'\s\+$','','')
endfunction
"---
" Get the size of the file
function! s:ExtractFileSize(line)
if (w:longlist==0)
return getfsize(s:ExtractFileName(a:line))
else
return strpart(a:line,b:maxFileLen+2,b:maxFileSizeLen);
endif
endfunction
"---
" Get the date of the file as a number
function! s:ExtractFileDate(line)
if w:longlist==0
return getftime(s:ExtractFileName(a:line))
else
return strpart(matchstr(strpart(a:line,b:maxFileLen+b:maxFileSizeLen+4),"«.*"),1) + 0
endif
endfunction
"---
" Add the header with help information
"
function! s:AddHeader()
let save_f=@f
1
if w:longhelp==1
let @f="\" <enter> : open file or directory\n"
\."\" o : open new window for file/directory\n"
\."\" O : open file in previously visited window\n"
\."\" p : preview the file\n"
\."\" i : toggle size/date listing\n"
\."\" s : select sort field r : reverse sort\n"
\."\" - : go up one level c : cd to this dir\n"
\."\" R : rename file D : delete file\n"
\."\" f : add current directory to favourites\n"
\."\" :help file-explorer for detailed help\n"
else
let @f="\" Press ? for keyboard shortcuts\n"
endif
let @f=@f."\" Sorted by ".w:sortdirlabel.w:sorttype.b:suffixeslast.b:filtering."\n"
let @f=@f."\"= ".b:completePath."\n"
put! f
let @f=save_f
endfunction
function! s:PrintFavDirs()
if !exists('s:favDirs')
return
end
setlocal modifiable
0
if search('^"=')
exe 'silent! 1,'.line('.').' g/^+ .*$/d _'
else
call s:CleanUpHistory()
setlocal nomodifiable nomodified
return
endif
call s:CleanUpHistory()
let favDirs = s:favDirs
let favDirs = substitute(favDirs, "\\(^\\|\n\\)", '\1+ ', 'g')
let favDirs = substitute(favDirs, '$', "\n", '')
0
call search('^"=')
silent! put!=favDirs
silent! g/^+ /s/\v^\+ (.*)\/([^\/]+\/=)$/+ \2 (\1\/\2)
call s:CleanUpHistory()
call s:CleanUpHistory()
setlocal nomodifiable nomodified
endfunction
"---
" Show the size and date for each file
"
function! s:AddFileInfo()
let save_sc = &sc
set nosc
" Mark our starting point
normal! mt
call s:RemoveSeparators()
" Remove all info
0
/^"=/+1,$g/^/call setline(line("."),s:GetFileName())
call s:CleanUpHistory()
" Add info if requested
if w:longlist==1
" Add file size and calculate maximum length of file size field
let b:maxFileSizeLen = 0
0
/^"=/+1,$g/^/let fn=s:GetFullFileName() |
\let fileSize=getfsize(fn) |
\let fileSizeLen=strlen(fileSize) |
\if fileSizeLen > b:maxFileSizeLen |
\ let b:maxFileSizeLen = fileSizeLen |
\endif |
\exec "normal! ".(b:maxFileLen-strlen(getline("."))+2)."A \<esc>" |
\exec 's/$/'.fileSize.'/'
call s:CleanUpHistory()
" Right justify the file sizes and
" add file modification date
0
/^"=/+1,$g/^/let fn=s:GetFullFileName() |
\exec "normal! A \<esc>$b".(b:maxFileLen+b:maxFileSizeLen-strlen(getline("."))+3)."i \<esc>\"_x" |
\exec 's/$/ '.escape(s:FileModDate(fn), '/').'/'
call s:CleanUpHistory()
setlocal nomodified
endif
call s:AddSeparators()