lang mes en set langmenu=en set iminsert=0 set imsearch=0 set helplang=enThis should ensure that all language and editor settings default to english.
These commands were a lifesaver to kill over nearly 200 cron jobs that were had got stuck.
ps -e -o ppid,pid,args | awk '$1~/^144$/ {print $2}' | xargs killIn the above example, the cron process was PID 144 so this killed all the jobs that were spawned by it.
The next step was to implement a lock mechanism to prevent a new job from starting if the last one hadn't completed.
Many thanks to WL!