Skip to content

Commit

Permalink
🐞 fix trying to despace a list as a string
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenesvk committed Jul 20, 2024
1 parent e332573 commit bf6725d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xontrib/skim.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ def skip(func):
return bindings.add( key_def)
elif key_user is False: # exists and disabled β†’ don't bind
return skip
else: # remove whitespace
elif type(key_user) == str:# remove whitespace
key_user = re_despace.sub('',key_user)

key_user = _parse_key_user(key_user)
Expand Down

0 comments on commit bf6725d

Please sign in to comment.