diff options
author | w0rp <devw0rp@gmail.com> | 2020-10-15 21:56:21 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-10-15 21:56:21 +0100 |
commit | 477eb89793f9be3be95cf89a22c8ff94a88ba9a8 (patch) | |
tree | 7b2b5d187b026bcb4a3860cfe85233dca76a62c4 /plugin/ale.vim | |
parent | f384d61c3d4d624fd391a6d877ec913096b2bb10 (diff) | |
download | ale-477eb89793f9be3be95cf89a22c8ff94a88ba9a8.zip |
#3332 Implement :ALERename! for ignoring errors
:ALERename! now ignores errors for files that cannot be modified, and
modifies all other files.
Diffstat (limited to 'plugin/ale.vim')
-rw-r--r-- | plugin/ale.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 18d867ee..32ec14ac 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -238,7 +238,7 @@ command! -bar ALEComplete :call ale#completion#GetCompletions('ale-manual') command! -bar ALEImport :call ale#completion#Import() " Rename symbols using tsserver and LSP -command! -bar ALERename :call ale#rename#Execute() +command! -bar -bang ALERename :call ale#rename#Execute({'force_save': '<bang>' is# '!'}) " Organize import statements using tsserver command! -bar ALEOrganizeImports :call ale#organize_imports#Execute() |