I'm using editorconfig-vim and file-line plugins together and they don't play nice.
vim filename.c # Respects .editorconfig settings
vim filename.c:23 # Uses defaults
Creating an issue here as I think this could be due to filetype detection issue. ie., editorconfig-vim sees c:23 as filetype and hence the rules don't apply.
PS: file-line plugin is great as it allows me to copy-paste sections of text from of grep -rn or git grep -n and jump to the line in file without having to s/:/ +/ on that section. So I'd love to keep both of these plugins.
I'm using editorconfig-vim and file-line plugins together and they don't play nice.
Creating an issue here as I think this could be due to filetype detection issue. ie., editorconfig-vim sees
c:23as filetype and hence the rules don't apply.PS: file-line plugin is great as it allows me to copy-paste sections of text from of
grep -rnorgit grep -nand jump to the line in file without having tos/:/ +/on that section. So I'd love to keep both of these plugins.