[all-commits] [llvm/llvm-project] 246afe: [lldb] Display autosuggestion part in gray if ther...
Raphael Isemann via All-commits
all-commits at lists.llvm.org
Wed Aug 12 04:12:11 PDT 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: 246afe0cd17fce935a01171f3cca548e02523e5c
https://github.com/llvm/llvm-project/commit/246afe0cd17fce935a01171f3cca548e02523e5c
Author: Shu Anzai <shu.anzai at gmail.com>
Date: 2020-08-12 (Wed, 12 Aug 2020)
Changed paths:
M lldb/include/lldb/Core/Debugger.h
M lldb/include/lldb/Core/IOHandler.h
M lldb/include/lldb/Host/Editline.h
M lldb/include/lldb/Interpreter/CommandInterpreter.h
M lldb/source/Core/CoreProperties.td
M lldb/source/Core/Debugger.cpp
M lldb/source/Core/IOHandler.cpp
M lldb/source/Host/common/Editline.cpp
M lldb/source/Interpreter/CommandInterpreter.cpp
A lldb/test/API/iohandler/autosuggestion/TestAutosuggestion.py
Log Message:
-----------
[lldb] Display autosuggestion part in gray if there is one possible suggestion
I implemented autosuggestion if there is one possible suggestion.
I set the keybinds for every character. When a character is typed, Editline::TypedCharacter is called.
Then, autosuggestion part is displayed in gray, and you can actually input by typing C-k.
Editline::Autosuggest is a function for finding completion, and it is like Editline::TabCommand now, but I will add more features to it.
Testing does not work well in my environment, so I can't confirm that it goes well, sorry. I am dealing with it now.
Reviewed By: teemperor, JDevlieghere, #lldb
Differential Revision: https://reviews.llvm.org/D81001
More information about the All-commits
mailing list