From 54ce931f0bcede9affde3a6934656fa6d4ad9961 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 9 Aug 2022 00:33:40 -0600 Subject: Add hints.vim Hints work like qutebrowser. will enter hint mode, which will prompt the user to type a two-letter sequence to jump the cursor to a specific line. --- plugin/hints.vim | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 plugin/hints.vim (limited to 'plugin/hints.vim') diff --git a/plugin/hints.vim b/plugin/hints.vim new file mode 100644 index 0000000..47282ad --- /dev/null +++ b/plugin/hints.vim @@ -0,0 +1,3 @@ +noremap :call hints#runHints("") +onoremap : call hints#runHints("V") +vnoremap : call hints#runHints("V") -- cgit