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

@ -4,6 +4,7 @@
#include <xkbcommon/xkbcommon.h>
#include <tllist.h>
#include "config.h"
#include "terminal.h"
static inline bool urls_mode_is_active(const struct terminal *term)
@ -13,7 +14,7 @@ static inline bool urls_mode_is_active(const struct terminal *term)
void urls_collect(
const struct terminal *term, enum url_action action, url_list_t *urls);
void urls_assign_key_combos(url_list_t *urls);
void urls_assign_key_combos(const struct config *conf, url_list_t *urls);
void urls_render(struct terminal *term);
void urls_reset(struct terminal *term);