Compare commits

...

8 Commits

Author SHA1 Message Date
Adam Stankiewicz
29ec69ffa0 Set default tabstop to 2, but only if not changed 2020-10-23 01:04:53 +02:00
Adam Stankiewicz
6636144497 Prevent setting expandtab by default, closes #599 2020-10-23 00:56:41 +02:00
Adam Stankiewicz
2a205569eb Set only softtabstop, not tabstop, fixes #600 2020-10-23 00:51:16 +02:00
Adam Stankiewicz
114f731483 Add missing menu file, fixes #597 2020-10-21 14:26:54 +02:00
Adam Stankiewicz
4b8687ebca Fix deteting tab indents, closes #596 2020-10-21 14:23:28 +02:00
Adam Stankiewicz
78f6c8f318 Improve autoindent heuristics (count diff of multiple lines of same indent) 2020-10-19 20:33:52 +02:00
Adam Stankiewicz
86bf33aa3b Use conf for /etc/hosts, fixes #595 2020-10-19 19:49:44 +02:00
Adam Stankiewicz
b64fcedd82 Count only increments in indent, also respect ftplugin settings 2020-10-19 11:24:31 +02:00
3 changed files with 1229 additions and 29 deletions

1199
extras/menu.vim Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -2545,7 +2545,7 @@ if !has_key(s:disabled_packages, 'alsaconf')
endif
if !has_key(s:disabled_packages, 'conf')
au BufNewFile,BufRead *.conf,auto.master,config setf conf
au BufNewFile,BufRead *.conf,*/etc/hosts,auto.master,config setf conf
endif
if !has_key(s:disabled_packages, 'master')
@@ -2634,6 +2634,10 @@ if !has_key(s:disabled_packages, 'autoindent')
" Code below re-implements sleuth for vim-polyglot
let g:loaded_sleuth = 1
if &tabstop == 8
let &tabstop = 2
endif
func! s:get_shiftwidth(indents) abort
let shiftwidth = 0
let max_count = 0
@@ -2657,9 +2661,8 @@ if !has_key(s:disabled_packages, 'autoindent')
let minindent = 10
let spaces_minus_tabs = 0
let lineno = 0
let stack = [0]
let indents = { '2': 0, '3': 0, '4': 0, '6': 0, '8': 0 }
let next_indent_lineno = 1
let prev_indent = 0
for line in a:lines
let lineno += 1
@@ -2731,18 +2734,28 @@ if !has_key(s:disabled_packages, 'autoindent')
if line[0] == "\t"
let spaces_minus_tabs -= 1
else
let spaces_minus_tabs += 1
if line[0] == " "
let spaces_minus_tabs += 1
endif
let indent = len(matchstr(line, '^ *'))
let indent_inc = abs(indent - prev_indent)
while stack[-1] > indent
call remove(stack, -1)
endwhile
if indent_inc > 0 && lineno == next_indent_lineno
if has_key(indents, indent_inc)
let indents[indent_inc] += 1
endif
let indent_inc = indent - stack[-1]
if indent_inc == 0 && len(stack) > 1
let indent_inc = indent - stack[-2]
endif
let next_indent_lineno = lineno + 1
let prev_indent = indent
if has_key(indents, indent_inc)
let indents[indent_inc] += 1
let prev_indent = indent
endif
if stack[-1] != indent
call add(stack, indent)
endif
endif
endfor
@@ -2757,9 +2770,7 @@ if !has_key(s:disabled_packages, 'autoindent')
if shiftwidth > 0
setlocal expandtab
let &l:shiftwidth=shiftwidth
if &tabstop == 8
let &l:tabstop=shiftwidth
endif
let &l:softtabstop=shiftwidth
return 1
endif
@@ -2771,18 +2782,13 @@ if !has_key(s:disabled_packages, 'autoindent')
return
endif
if &expandtab
" Make tabstop to be synchronized with shiftwidth by default
" Some plugins are using &shiftwidth directly or accessing &tabstop
if &tabstop != 8 || &shiftwidth == 0
let &shiftwidth = &tabstop
else
let &tabstop = &shiftwidth
endif
" Do not autodetect indent if language sets it
if &l:shiftwidth != &g:shiftwidth
return
endif
let b:sleuth_culprit = expand("<afile>:p")
if s:guess(getline(1, 64))
if s:guess(getline(1, 128))
return
endif
if s:guess(getline(1, 1024))
@@ -2819,12 +2825,6 @@ if !has_key(s:disabled_packages, 'autoindent')
let level -= 1
endwhile
setlocal expandtab
let &l:shiftwidth = 2
if &tabstop == 8
let &l:tabstop = 2
endif
let b:sleuth_culprit = "default"
endfunc

View File

@@ -1958,6 +1958,7 @@ filetypes:
filenames:
- auto.master
- config
- '*/etc/hosts'
---
name: b
remote: vim/vim:runtime