From f0a855b8cccd0c83493bb997e59b2597b06eb56a Mon Sep 17 00:00:00 2001 From: Paul Nelson Date: Tue, 24 Jun 2025 19:35:11 +0200 Subject: [PATCH] feat: Add keybinding "f" for overleaf-find-file * overleaf.el (overleaf-command-map): Add "f" keybinding for overleaf-find-file. * README.org: Document it. --- README.org | 1 + overleaf.el | 1 + 2 files changed, 2 insertions(+) diff --git a/README.org b/README.org index 41791c9..12d6e46 100644 --- a/README.org +++ b/README.org @@ -153,6 +153,7 @@ The available keybindings are then: - =[prefix] t= - toggle track-changes - =[prefix] s= - toggle auto-save - =[prefix] b= - browse project + - =[prefix] f= - find file - =[prefix] g= - go to the cursor of another user - =[prefix] l= - list users' cursor positions in an xref buffer diff --git a/overleaf.el b/overleaf.el index bf07046..3e25f86 100644 --- a/overleaf.el +++ b/overleaf.el @@ -1709,6 +1709,7 @@ to the default tooltip text." "t" #'overleaf-toggle-track-changes "s" #'overleaf-toggle-auto-save "b" #'overleaf-browse-project + "f" #'overleaf-find-file "g" #'overleaf-goto-cursor "l" #'overleaf-list-users)