Skip to content

Commit

Permalink
add placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
pit-ray committed Nov 10, 2023
1 parent 77cb470 commit 8d3bbdf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/bind/mode/command_mode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ namespace vind
return result ;
}

void complement_command() {

}

void write_as_printable(const core::CmdUnit::SPtr& input) {
// Aggregate the printable keys into this vector from input and outputs.
std::vector<core::CmdUnit::SPtr> printables ;
Expand Down Expand Up @@ -285,6 +289,10 @@ namespace vind
pimpl->forward_history() ;
continue ;
}
if(input->is_containing(KEYCODE_TAB)) {
pimpl->complement_command() ;
continue ;
}
if(input->is_containing(KEYCODE_ENTER)) {
result = pimpl->decide() ;
break_flag = true ;
Expand Down
2 changes: 1 addition & 1 deletion src/core/version.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef _VERSION_HPP
#define _VERSION_HPP

#define WIN_VIND_VERSION "5.5.2.0"
#define WIN_VIND_VERSION "5.6.0.0"

#endif

0 comments on commit 8d3bbdf

Please sign in to comment.