summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorDavid Dominguez <352985+ddominguez@users.noreply.github.com>2024-03-02 02:05:47 -0500
committerGitHub <noreply@github.com>2024-03-02 16:05:47 +0900
commit4d132b3ffa5c42c882fccdf970ddb3f0063ee599 (patch)
tree337795722593af5853b544e381a0ab27deb016b9 /autoload
parentb01c0b23bb9f143c672dbb3a589f77dd930123e2 (diff)
downloadale-4d132b3ffa5c42c882fccdf970ddb3f0063ee599.zip
Fix biome formatter (#4733)
* Fix biome formatter Added escaped executable to the biome#Fix command * Added fixer callback test
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/fixers/biome.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fixers/biome.vim b/autoload/ale/fixers/biome.vim
index 903d7f39..0f210657 100644
--- a/autoload/ale/fixers/biome.vim
+++ b/autoload/ale/fixers/biome.vim
@@ -3,7 +3,7 @@ function! ale#fixers#biome#Fix(buffer) abort
let l:options = ale#Var(a:buffer, 'biome_options')
return {
- \ 'command': '%e format'
+ \ 'command': ale#Escape(l:executable) . ' format'
\ . (!empty(l:options) ? ' ' . l:options : '')
\ . ' --stdin-file-path=%s',
\}