vim-visualrun

Vim plugin to run visually selected range of lines as Vim commands.
git clone git://git.alex.balgavy.eu/vim-visualrun.git
Log | Files | Refs | README | LICENSE

.gitignore (906B)


      1 
      2 # Created by https://www.toptal.com/developers/gitignore/api/macos,vim
      3 # Edit at https://www.toptal.com/developers/gitignore?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 !*.svg  # comment out if you don't need vector files
     37 [._]*.sw[a-p]
     38 [._]s[a-rt-v][a-z]
     39 [._]ss[a-gi-z]
     40 [._]sw[a-p]
     41 
     42 # Session
     43 Session.vim
     44 Sessionx.vim
     45 
     46 # Temporary
     47 .netrwhist
     48 *~
     49 # Auto-generated tag files
     50 tags
     51 # Persistent undo
     52 [._]*.un~
     53 
     54 # End of https://www.toptal.com/developers/gitignore/api/macos,vim
     55