editorconfig-vim icon indicating copy to clipboard operation
editorconfig-vim copied to clipboard

EditorConfig plugin for Vim

Results 58 editorconfig-vim issues
Sort by recently updated
recently updated
newest added

Recently I added an .editorconfig with the following content to my ansible directory: ```ini [*] charset = utf-8 ``` Usually I have the setting `set fileencodings=ucs-bom,latin1` in my vim config...

Bug

1. Vim already supports having 'softtabstop' equal to 'shiftwidth'. 2. I think 'softtabstop' is really a UI tweak, not a filetype setting. This bit me when I finally decided I...

If you edit a file which does not exist, editorconfig settings are applied, but if you edit a file in a directory which does not exist, editorconfig settings are not...

Bug

I just opened a file in a project that uses `trim_trailing_whitespace=true`. I made some changes to the file, and after saving it found that all lines had been stripped of...

Bug

Related issue: https://github.com/editorconfig/editorconfig/issues/214 I assume there are more appropriate ways fot fixing this but I'm not an expert for vim plugin :/

``` # ~/.editorconfig [*] indent_style=space indent_size=2 ``` ``` $ vim :set tabstop tabstop=8 ``` ``` $ vim doesnotexist :set tabstop tabstop=2 ``` I'd expect that `[*]` also applies for the...

Hello, this is a question, not a bug. Will `editorconfig-vim` become obsolete for users of Neovim now that version 10 will have EditorConfig recognition and application included?

Not-a-bug
neovim

The current behavior is to set both shiftwidth and tabstop/softtabstop. shiftwidth gets set to the same value as tabstop. If I open a file that editorconfig indents with 8-space hard...

Enhancement

I use editorconfig-vim installed with Plug and get some errors with the plugin: ```shell $ echo q | /usr/bin/vim -u ~/.vimrc -U NONE -i NONE -V1 -nNes not found in...

Bug