diff options
author | Abouzar Parvan <[email protected]> | 2021-07-17 11:02:17 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-17 02:32:17 -0400 |
commit | 3f4cf5f01d6fd9da2c133b22ff79c8a55a7910fc (patch) | |
tree | 03510cc4a2985b27d20c740901037035a1d90150 /lua/lang/sh.lua | |
parent | ad373002d88d7478bb0d73395d2bb39bfa1bee2c (diff) |
be explicit about stdin for formatters (#987)
Diffstat (limited to 'lua/lang/sh.lua')
-rw-r--r-- | lua/lang/sh.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lang/sh.lua b/lua/lang/sh.lua index e7c5ef16..37bd9238 100644 --- a/lua/lang/sh.lua +++ b/lua/lang/sh.lua @@ -25,7 +25,7 @@ M.format = function() return { exe = O.lang.sh.formatter.exe, args = O.lang.sh.formatter.args, - stdin = not (O.lang.sh.formatter.stdin ~= nil), + stdin = O.lang.sh.formatter.stdin, tempfile_prefix = ".formatter", } end, |