diff options
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -33,6 +33,9 @@ restore-session = on trigger-characters = on # should all identifier characters (e.g. a-z) be treated as trigger characters? identifier-trigger-characters = off +# enable LSP support (for autocompletion, etc.) +# you can also set `lsp = ""` but this is a quick way to disable LSP servers for all langauges +lsp-enabled = yes # search depth for files to generate tags for. # if set to 0, tag generation/regeneration will do nothing @@ -40,7 +43,7 @@ tags-max-depth = 2 # regenerate tags if an identifier is not found (with Ctrl+click)? regenerate-tags-if-not-found = yes # this variable determines how ted finds the "root directory" of a project for -# running build commands and because LSPs need to know +# running build commands and because LSP servers need to know # FOR EXAMPLE: If you have the file /a/b/c/d.txt open, # ted will check each of the directories /, /a, /a/b, /a/b/c # and set the root to whichever one has one of these files, @@ -123,7 +126,7 @@ Ctrl+a = :select-all Tab = :tab Shift+Tab = :backtab Enter = :newline -# same as :newline for normal text insertion, but goes to the previous search result instead of the next one +# same as :newline for normal text insertion, but goes to the previous search result instead of the next one for find+replace Shift+Enter = :newline-back Keypad Enter = :newline Shift+Keypad Enter = :newline-back |