File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,6 +64,11 @@ if [ -n "$cargo_root" ] &&
6464 cargo fmt --check || exit 1
6565fi
6666
67+ lint_script=$( find . -name ' package.json' | head -n 1 | xargs --no-run-if-empty jq ' .scripts // {} | keys[]' -r | grep ' lint' )
68+ if [ -n " $lint_script " ] && [ -z " $DISABLE_FMT_CHECK " ]; then
69+ npm run lint || exit 1
70+ fi
71+
6772if [ -e .mendess-copyright-check-holder ]; then
6873 holder=$( cat .mendess-copyright-check-holder)
6974 while read -r file; do
Original file line number Diff line number Diff line change 210210
211211hl .bind (mainMod .. " + SHIFT + space" , hl .dsp .window .float ({ action = " toggle" }))
212212hl .bind (mainMod .. " + F" , hl .dsp .window .fullscreen ({ action = " toggle" }))
213+ hl .bind (mainMod .. " + SHIFT + F" , hl .dsp .window .fullscreen ({ mode = 1 }))
213214
214215hl .bind (mainMod .. " + I" , hl .dsp .workspace .toggle_special (" magic" ))
215216hl .bind (mainMod .. " + SHIFT + S" , hl .dsp .window .move ({ workspace = " special:magic" , follow = false }))
You can’t perform that action at this time.
0 commit comments