Results 3 comments of chengen

> That's... annoyingly quick, as deprecations go. > > I think we might want to basically replicate the functionality from [dart-lang/dart-vim-plugin#125](https://github.com/dart-lang/dart-vim-plugin/pull/125), which checks whether `dart` exists, then does a version...

I find a simple work around here, Just put a small excutable shell script name 'dartfmt' under one of your $PATH directory, for example: /usr/local/bin/ , where 'which' command can...

@dbarnett This doesn't work because of the spaces. ``` :Glaive codefmt dartfmt_executable='dart format -o show' ``` By adding `dartfmt_options` as below, it works: ``` --- a/autoload/codefmt/dartfmt.vim +++ b/autoload/codefmt/dartfmt.vim @@ -38,7...