vim-indent-detect

A Vim plugin for handeling indentation.
git clone https://git.ce9e.org/vim-indent-detect.git

commit
4bbf3bb2aa5112cec8163a8e0d8ba1674f50d5de
parent
5cec71e7384ad16eada3b272ac36dd34ca9aef67
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2016-09-11 23:54
add README

Diffstat

A README.md 17 +++++++++++++++++

1 files changed, 17 insertions, 0 deletions


diff --git a/README.md b/README.md

@@ -0,0 +1,17 @@
   -1     1 A Vim plugin for handeling indentation.
   -1     2 
   -1     3 -	Whenever a file is loaded, this plugin detects the indentation automatically.
   -1     4 	The detection is quite simplistic:
   -1     5 
   -1     6 	-	it does not support mixed tabs and spaces
   -1     7 	-	it only consider the first indented line
   -1     8 	-	it does not consider anything after line 50
   -1     9 
   -1    10 -	The settings can be overwritten manually by using the `Spaces [width]` and
   -1    11 	`Tabs [width]` commands.
   -1    12 
   -1    13 -	You can change the defaults by setting `g:detectindent_preferred_expandtab`
   -1    14 	and `g:detectindent_preferred_expandtab`.
   -1    15 
   -1    16 Inspired by [detectindent](https://github.com/ciaranm/detectindent) and
   -1    17 [vim-sleuth](https://github.com/tpope/vim-sleuth).