#
# For each number (0-9) the following mapping is generated (example with 0):
#
-# bind-key -n 0 select-window -t :10 \; \
-# unbind-key -n 0 \; \
+# bind-key -n 0 unbind-key -n 0 \; \
# ...
# unbind-key -n 9 \; \
-# unbind-key -n \\; # this unmaps ;
+# unbind-key -n \\; \ # this unmaps ;
+# select-window -t :10 \;
#
-# Due to Tmux's handling of errors (they abort the rest of the mapping) the
-# select-window command is actually executed as last part of the mapping.
+# Due to Tmux's handling of errors, they abort the rest of the mapping, the
+# select-window command is executed as last part of the mapping.
#
# If a secondary chaining (e.g. prefix ;;3) is requested, a second file like
# the generated one must be loaded with ; to jump to windows 20-29. Therefore