diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-08-02 21:54:15 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-08-02 21:58:49 +0530 |
| commit | d37020870600d6c842f9a75ebd3986df6010c25c (patch) | |
| tree | 471e4ebac8661dcc299df61fb01436071e88f4b5 /init.lua | |
| parent | 052f043274e122cf4e8f4589e1256d5dfd526252 (diff) | |
| download | null-browser-d37020870600d6c842f9a75ebd3986df6010c25c.tar.gz null-browser-d37020870600d6c842f9a75ebd3986df6010c25c.zip | |
Add hints extra for opening links (number keys only)
Diffstat (limited to 'init.lua')
| -rw-r--r-- | init.lua | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -62,4 +62,9 @@ require 'null-browser.extras.statusline'.init { decoration = web.decorations.bottom, } +local hints = require 'null-browser.extras.hints' +hints.init() +web.keymap.set('n', 'f', function() hints.start('a[href], button', false) end) +web.keymap.set('n', '<s-f>', function() hints.start('a[href], button', true) end) + print('ending...') |
