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

Include at least: - How to open a PR (since GH pulls from CONTRIBUTING.md) - Installing dev dependencies - How to run core tests - How to run plugin tests

Enhancement

Fixes: https://github.com/editorconfig/editorconfig-vim/issues/144#issue-593410179

Now that Travis (effectively) does not have a free tier, we are not running the `tests/travis-test.sh` tests in CI. Add those to Appveyor runs.

ci

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...

I have this .editorconfig and this plugin installed with vim-plug ``` root = true [*] indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true...

support

For some reason, when opening a file .editorconfig is only loaded if I am in a directory which has a .editorconfig file. Example: > $ pwd > ~/ > $...

How could I display the path to currently used/loaded `.editorconfig` file?

I have `insert_final_newline = unset` in my `.editorconfig`, and `set nofixendofline` in my `.vimrc`. When editorconfig runs, it turns `fixendofline`/`fixeol` on again, because `insert_final_newline` isn't set to `false`: ```vim if...

### What I experienced While editing a file, I started to do some substitutions with `:s/o/x`. I tested it on one line, saved the file, and tried to apply it...

Bug
Help wanted

Packages are loaded after vimrc is parsed, so we can't add the hook immediately. Suggest using either an autocommand or a file in an after-directory to add the hook instead....