summaryrefslogtreecommitdiff
path: root/ui.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-22 14:02:10 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-22 14:02:10 -0500
commit2b24b61b156a66dd518f739156c424dbede075b9 (patch)
tree8c5086450c9a0ae9d1ea8af34bb590f3fb234414 /ui.c
parent46a02444bdeac16474e31c4e836b118c07f8f57f (diff)
got file selector to mostly work, better mouse dragging
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/ui.c b/ui.c
index 58f76d9..04680d2 100644
--- a/ui.c
+++ b/ui.c
@@ -41,7 +41,7 @@ static int qsort_file_entry_cmp(void const *av, void const *bv) {
}
// change directory of file selector.
-void file_selector_cd(FileSelector *fs, char const *path) {
+void file_selector_cd(Ted *ted, FileSelector *fs, char const *path) {
// @TODO: handle .. properly
if (path[0] == PATH_SEPARATOR
#if _WIN32
@@ -57,6 +57,9 @@ void file_selector_cd(FileSelector *fs, char const *path) {
arr_append_str(fs->cwd, PATH_SEPARATOR_STR);
}
arr_append_str(fs->cwd, path);
+
+ // clear search term
+ buffer_clear(&ted->line_buffer);
}
// returns the name of the selected file, or NULL
@@ -90,7 +93,7 @@ static char *file_selector_update(Ted *ted, FileSelector *fs) {
if (path) return str_dup(path);
break;
case FS_DIRECTORY:
- file_selector_cd(fs, name);
+ file_selector_cd(ted, fs, name);
break;
default: break;
}
@@ -106,7 +109,7 @@ static char *file_selector_update(Ted *ted, FileSelector *fs) {
if (path) return str_dup(path);
break;
case FS_DIRECTORY:
- file_selector_cd(fs, name);
+ file_selector_cd(ted, fs, name);
break;
default: break;
}
@@ -158,7 +161,7 @@ static char *file_selector_update(Ted *ted, FileSelector *fs) {
size_t path_size = strlen(name) + strlen(cwd) + 3;
char *path = ted_calloc(ted, 1, path_size);
if (path) {
- snprintf(path, path_size - 1, "%s%s%s", cwd, cwd_has_path_sep ? PATH_SEPARATOR_STR : "", name);
+ snprintf(path, path_size - 1, "%s%s%s", cwd, cwd_has_path_sep ? "" : PATH_SEPARATOR_STR, name);
entries[i].path = path;
entries[i].type = fs_path_type(path);
} else {