Hi,
In the file media/com_hikashop/js/checkout.js you have the function handleEnter which does that.
In the view file checkout / show.php that you can edit via the menu Display>Views, you can see that this handleEnter function is called for each block displayed on the checkout.
So you could add a condition there to remove the call to handleEnter so that it is not initialized on the fields of the shipping block.
Now, in the refreshBlock and submitBlock functions of the checkout.js you also have a call to handleEnter in order to reattach the listener to the inputs when a block of the checkout is refreshed in AJAX.
So I think a simpler approach would be to edit checkout / show.php and keep the calls to handleEnter and add additional javascript to redefine the handleEnter function like that:
<script>
window.checkout.handleEnter = function(task, step, pos) {
... copy / paste the code from the original handleEnter function and adapt it to skip when the block is the shipping block...
}
</script>