fix: save only screenshot bind fixed

This commit is contained in:
2026-07-03 10:22:12 +02:00
parent 61c1ece03d
commit 2570646b62
+2 -2
View File
@@ -14,7 +14,7 @@ hl.define_submap("screenshot", function()
end) end)
hl.bind("s", function() hl.bind("s", function()
hl.dispatch(hl.dsp.exec_cmd("dms screenshot --no-copy")) hl.dispatch(hl.dsp.exec_cmd("dms screenshot --no-clipboard"))
exit_submap() exit_submap()
end) end)
@@ -29,7 +29,7 @@ hl.define_submap("screenshot", function()
end) end)
hl.bind("SHIFT + s", function() hl.bind("SHIFT + s", function()
hl.dispatch(hl.dsp.exec_cmd("dms screenshot full --no-copy")) hl.dispatch(hl.dsp.exec_cmd("dms screenshot full --no-clipboard"))
exit_submap() exit_submap()
end) end)