`w` and `e` and `b` skip one character words

Hi timber, w e b check this earlier thread out with new bindings for those keys.

and here is @alexherbo2 old word-select.kak commit that I like for w

  # <https://github.com/alexherbo2/word-select.kak/blob/c46f0c117d1e704fb674c7770d4e6a53677bdbca/rc/word-movement.kak#L11>
  define-command whitespace-next 'execute-keys \"_/\s+<ret>'         -docstring 'whitespace next'
  define-command whitespace-previous 'execute-keys \"_<a-/>\s+<ret>' -docstring 'whitespace previous'

  map global normal w ': whitespace-next<ret>'
  map global normal W ': whitespace-previous<ret>'

cya timber.