url-mode: use ‘jump-label-letters’ as the alphabet for key sequences

Instead of hard coding the alphabet to “sadfjklewcmpgh”, use the
letters from ‘jump-label-letters’.

Closes #355
This commit is contained in:
Daniel Eklöf 2021-02-13 11:43:28 +01:00
parent d29ec4fd18
commit c7006661f5
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 9 additions and 8 deletions

View file

@ -281,7 +281,7 @@ execute_binding(struct seat *seat, struct terminal *term,
: URL_ACTION_LAUNCH;
urls_collect(term, url_action, &term->urls);
urls_assign_key_combos(&term->urls);
urls_assign_key_combos(term->conf, &term->urls);
urls_render(term);
return true;
}