summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2020-11-21 19:00:53 +0000
committerw0rp <devw0rp@gmail.com>2020-11-21 19:00:53 +0000
commit06e7f2195ef6375be32a63f98b5e46070708a315 (patch)
tree35dea61349a6c9387b62c0bc365f13f16d56835e /plugin
parentb8aaff2cf77883702374aee28f088b8a64c3b492 (diff)
downloadale-06e7f2195ef6375be32a63f98b5e46070708a315.zip
Fix #3332 - Modify everything for rename/actions
ALE now just modifies every open buffer for rename and actions, and sets up a one-time use BufEnter event to reload buffers that are changed so you don't have to think about what to do with changed buffers.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 2398956e..1fde9df1 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -245,7 +245,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 -bang ALERename :call ale#rename#Execute({'force_save': '<bang>' is# '!'})
+command! -bar -bang ALERename :call ale#rename#Execute()
" Apply code actions to a range.
command! -bar -range ALECodeAction :call ale#codefix#Execute(<range>)