command palette: minor style changes

This commit is contained in:
YohananDiamond 2024-02-04 21:10:41 -03:00
parent aba64d21f1
commit 477b331c0e

View file

@ -23,10 +23,10 @@
#include "misc/cpp/imgui_stdlib.h"
#include <fmt/printf.h>
#include <algorithm>
#include <cctype>
#include <ctype.h>
#include "../ta-log.h"
static inline bool matchFuzzy(const char* haystack,const char* needle) {
static inline bool matchFuzzy(const char* haystack, const char* needle) {
size_t h_i=0; // haystack idx
size_t n_i=0; // needle idx
while (needle[n_i]!='\0') {