Skip to content
Snippets Groups Projects
Unverified Commit 1a53040d authored by Oliver Smith's avatar Oliver Smith
Browse files

editorconfig: fix syntax

Fix the pattern not working in neovim's now built-in editorconfig
support by removing "**/". This should have matched all paths, but it
doesn't work with the built-in parser and by removing it, we apparently
match all paths too. This fixes neovim indenting with tabs in the
Makefile and shell scripts in this repository.

Happy to see that this is a built-in feature now \o/
parent 5b333873
No related branches found
No related tags found
No related merge requests found
......@@ -15,5 +15,5 @@ indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[**/{*.sh,APKBUILD,Makefile}]
[{*.sh,APKBUILD,Makefile}]
indent_style = tab
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment