-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstash.c
57 lines (50 loc) · 1.61 KB
/
stash.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* Copyright (c) 2006-2015 Jonas Fonseca <jonas.fonseca@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "tig/draw.h"
#include "tig/main.h"
static bool
stash_open(struct view *view, enum open_flags flags)
{
static const char *stash_argv[] = { "git", "stash", "list",
encoding_arg, "--no-color", "--pretty=raw", NULL };
struct main_state *state = view->private;
state->with_graph = false;
watch_register(&view->watch, WATCH_STASH);
return begin_update(view, NULL, stash_argv, flags | OPEN_RELOAD);
}
static void
stash_select(struct view *view, struct line *line)
{
main_select(view, line);
string_format(view->env->stash, "stash@{%d}", line->lineno - 1);
string_copy(view->ref, view->env->stash);
}
static struct view_ops stash_ops = {
"stash",
argv_env.stash,
VIEW_SEND_CHILD_ENTER | VIEW_REFRESH,
sizeof(struct main_state),
stash_open,
main_read,
view_column_draw,
main_request,
view_column_grep,
stash_select,
main_done,
view_column_bit(AUTHOR) | view_column_bit(COMMIT_TITLE) |
view_column_bit(DATE) | view_column_bit(ID) |
view_column_bit(LINE_NUMBER),
main_get_column_data,
};
DEFINE_VIEW(stash);
/* vim: set ts=8 sw=8 noexpandtab: */