Hotkey - Fortify until healed?

I can fortify using F

How can I fortify until healed?

It used to be the H key in Civ-5


Solution 1:

It looks like there isn't a default hotkey for that action (see this list of default hotkeys for example).

However, you may be able to add it. You can add hotkeys in the options menu, if it's available as an action to hotkey there.

If not, you may have additional options for hotkey-assigning by editing the .lua file responsible for input actions. As this PC Invasion article explains, you can edit the file C:\Wherever you have steam installed\Steam\steamapps\common\Sid Meier’s Civilization Vi\Base\Assets\UI\WorldInput.lua in a text editor, and add hotkey assignments there. The syntax is fairly straightforward, things like:

if( uiKey == Keys.VK_UP or uiKey == Keys.W) 

for changing the camera UP control to W (part of assigning them to WASD).