vim-relatively-complete

Vim plugin to complete files relative to the current file, unless path explicitly specified.
git clone git://git.alex.balgavy.eu/vim-relatively-complete.git
Log | Files | Refs | README | LICENSE

.gitignore (832B)


      1 
      2 # Created by https://www.gitignore.io/api/macos,vim
      3 # Edit at https://www.gitignore.io/?templates=macos,vim
      4 
      5 ### macOS ###
      6 # General
      7 .DS_Store
      8 .AppleDouble
      9 .LSOverride
     10 
     11 # Icon must end with two \r
     12 Icon
     13 
     14 # Thumbnails
     15 ._*
     16 
     17 # Files that might appear in the root of a volume
     18 .DocumentRevisions-V100
     19 .fseventsd
     20 .Spotlight-V100
     21 .TemporaryItems
     22 .Trashes
     23 .VolumeIcon.icns
     24 .com.apple.timemachine.donotpresent
     25 
     26 # Directories potentially created on remote AFP share
     27 .AppleDB
     28 .AppleDesktop
     29 Network Trash Folder
     30 Temporary Items
     31 .apdisk
     32 
     33 ### Vim ###
     34 # Swap
     35 [._]*.s[a-v][a-z]
     36 [._]*.sw[a-p]
     37 [._]s[a-rt-v][a-z]
     38 [._]ss[a-gi-z]
     39 [._]sw[a-p]
     40 
     41 # Session
     42 Session.vim
     43 Sessionx.vim
     44 
     45 # Temporary
     46 .netrwhist
     47 *~
     48 
     49 # Auto-generated tag files
     50 tags
     51 
     52 # Persistent undo
     53 [._]*.un~
     54 
     55 # Coc configuration directory
     56 .vim
     57 
     58 # End of https://www.gitignore.io/api/macos,vim