From 655211798443b828142365cb11ab8338f6fcb876 Mon Sep 17 00:00:00 2001 From: Ryan Wiener Date: Thu, 27 Jul 2023 19:52:20 -0700 Subject: [PATCH] Change the dartfmt_executable to point to "dart format". This is because dartfmt has been replaced by dart format. --- autoload/codefmt/dartfmt.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/codefmt/dartfmt.vim b/autoload/codefmt/dartfmt.vim index ec98906..86697b2 100644 --- a/autoload/codefmt/dartfmt.vim +++ b/autoload/codefmt/dartfmt.vim @@ -23,7 +23,7 @@ function! codefmt#dartfmt#GetFormatter() abort let l:formatter = { \ 'name': 'dartfmt', \ 'setup_instructions': 'Install the Dart SDK from ' . - \ 'https://github.com/google/vim-codefmt'} + \ 'https://dart.dev/get-dart'} function l:formatter.IsAvailable() abort return executable(s:plugin.Flag('dartfmt_executable'))