diff options
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -51,12 +51,16 @@ lsp-log = off # display function signature help? (only with LSP running) # this is the thing at the bottom of ted which shows the parameters to the function you're calling signature-help-enabled = yes -# display hover info when F1 key is pressed? (only with LSP running) +# display hover info when the F1 key is pressed? (only with LSP running) hover-enabled = yes +# key used to show hover info +hover-key = F1 # if this is set to x, then hover info will be displayed without F1 key after x seconds (with LSP running) hover-time = 1e10 # highlight instances of the variable under the cursor when the F2 key is pressed? (only with LSP running) highlight-enabled = yes +# key used to highlight variable under cursor +highlight-key = F2 # don't require F2 key for highlighting highlight-auto = no # maximum editable file size. |